Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Where did my pages and buttons go?do you need to get in the admin area?
Noooo, never give anyone your admin/password combination.
Your site seems to be down, right now. Is it intentional (makes analyzing the problem a bit harder…)?
Peter
Forum: Themes and Templates
In reply to: Where did my pages and buttons go?Since I do not know the prophoto2 theme, I can only assume that this theme uses fixed menu items in the navigation bar, while your previous theme used wp_list_pages() to build the nav bar.
To be sure I would need you to post an URL to your site.
Changing themes doesn’t do anything to your pages, so nothing is lost.
Peter
Forum: Themes and Templates
In reply to: Title depending on categoryActually, you don’t have to do the if at all:
If your theme uses the
post_class()function to give your posts classes, then it will hold a class for the category as well.You then can create different styling in your style.css for that specific category.
Peter
Forum: Themes and Templates
In reply to: sidebar and everything floating aroundIf I look at the validation errors I would say that you either have too many closing div tags (
</div>) at the wrong place, or you moved a piece of code to where it doesn’t belong.Try to balance the divs…
Peter
Did you change anything to the access rights of your MySQL account?
The only reference to a theme is, AFAICT, in the wp_options table.Peter
Forum: Themes and Templates
In reply to: Changing PermalinksHmmm, grumpy, aren’t we? 😉
WP needs access to .htaccess file to write it. else what you did is an option.
WP doesn’t need anything if you think it’s safer. After setting permalinks, and WP doesn’t have write rights, it suggests to copy the information manually. Write access to .htaccess is no must.
Peter
Forum: Themes and Templates
In reply to: How can i place categories instead of Pages in navigation….yes, find in (probably) header.php
wp_list_pagesand replace that bywp_list_categories.Peter
Forum: Themes and Templates
In reply to: Changing PermalinksLook here. Maybe you forgot something.
Peter
Forum: Themes and Templates
In reply to: Can’t hide blog title (Femme Flora theme)text-indent: -9999px;in your css will do the trick.Peter
Forum: Themes and Templates
In reply to: Banners different on each post?Custom fields and more custom fields.
Peter
Forum: Themes and Templates
In reply to: Buddypress version?Look at the tags… the OP is referring to the mystique theme.
Peter
Forum: Themes and Templates
In reply to: Trying to get header to link to homepagethis works for me:
<div class="top" style="cursor: pointer;" onclick="location.href='http://www.lastcheckpoint.com';"> </div>Maybe it’s the order of the attributes?
Peter
Forum: Themes and Templates
In reply to: How To Add a Bigger Image in my header – Evidens ThemeDid you solve this already? The image currently in your header is 712x100px.
Peter
Forum: Themes and Templates
In reply to: Center Post DividerI suppose you mean the jpg?
Add this to #header img
margin: 0 auto;Peter