kohaku
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My wordpress was owned :(You could talk to your hosting provider by sending a ticket and seeing if they can go in and delete everything and reset your hosting.
Forum: Fixing WordPress
In reply to: Content background isn’t stretching to cover all the content.You could use a <div> for the footer. That might help.
But I did notice that you have:
#wrapper { position: relative; left: 50%; margin: 0px 0px 0px -398px; width: 808px; border: 1px solid #4e2a15; background: #eee1d4 url(images/wrapper-bg.gif) repeat-y; }
I think your margin of 0 0 0 -398 might be causing the issue. Though that’s for the left, which doesn’t make a whole lot of sense to me cause that would bring the layout way to the left.
Forum: Fixing WordPress
In reply to: how to find the category id?Manage -> Categories
If you mouse-over the name of the category, it tells you in the status bar what the number is. Also, if you lick on the title of the category, it goes to edit mode and the ID of the category is at the end of the address.
Forum: Fixing WordPress
In reply to: iframe login – redirect to the parent pageMaybe you could say away from iframes and use the parent page as the landing for your site with a link to the login area. This would eliminate the dashboard area in the iframe, but once you log in, you’d still see the dashboard. If the people logging in besides you are only subscribers, then I don’t believe they can really do anything besides leave comments.
Forum: Fixing WordPress
In reply to: Content background isn’t stretching to cover all the content.Do you have your footer information in a footer.php file? And sidebar information in sidebar.php?
If so, then I’ll admit I’m getting kind of confused on why the content area isn’t stretching to fit.
The only thing I can think of is that a mixture of the CSS and the HTML is preventing the stretch.
Forum: Fixing WordPress
In reply to: My wordpress was owned :(I hope everything gets fixed for you!
Forum: Fixing WordPress
In reply to: Content background isn’t stretching to cover all the content.It might have more to do with your footer information than anything since you have it separated out with <p> tags. If it was classed in a <div id=”footer”>, then your paging might work.
You’d have to add some CSS for the footer though.
Are you using
<?php get_sidebar(); ?>
&
<?php get_footer(); ?>
?That might help but it would involve some CSS & HTML work.
Forum: Fixing WordPress
In reply to: How To Reset / Clear Post ID?I don’t think you can reset post numbers.
Forum: Fixing WordPress
In reply to: Content background isn’t stretching to cover all the content.Maybe you could take out the fixed portion of the background.
Forum: Fixing WordPress
In reply to: My wordpress was owned :(If you don’t have a lot of stuff on the blog and could easily replace it, you could completely uninstall WP and delete all your databases and start fresh.
Unfortunately, I don’t have any solutions to fix it as is.
Forum: Fixing WordPress
In reply to: how do i delete a page from the nav barYou could always use “exclude pages”.
https://codex.www.ads-software.com/Template_Tags/wp_list_pages#Exclude_Pages_from_List
But that’s if you are using wp_list_pages() like MichaelH suggested.
You could always change the name of HOME and make it into something else if the exclusion isn’t the right solution.
Forum: Fixing WordPress
In reply to: Changing link style if on that page, highlight/bold textCan we see what you’re talking about?
It might be that you need to add in some CSS, but I can’t say for sure.
Forum: Fixing WordPress
In reply to: Content background isn’t stretching to cover all the content.trapmuzik is right, you need to repeat you bg.
#wrapper { position: relative; left: 50%; margin: 0px 0px 0px -398px; width: 808px; border: 1px solid #4e2a15; background: #eee1d4 url(images/wrapper-bg.gif) fixed repeat-y; }
I don’t see any missing </div> tags.
Forum: Fixing WordPress
In reply to: Archive display problemI figured out the month display issues, but I still can’t get the category to display more than one. Is there some code I need to put in to get category archives to display more?
Forum: Fixing WordPress
In reply to: Archive display problemI think I figured it out. Thank you anyway.