Equal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: add id to the li tag for wp_list_pagesCould you not use the count from the page item number that the function assigns to each list tag? In your example this is
page-item-182Forum: Fixing WordPress
In reply to: using wordpress as an open forum?try this to use the comments box for people to upload stuff:
Forum: Themes and Templates
In reply to: How do I get my local installation to update CSS?Try following these steps to get your local install working correctly:
http://www.webdesignerwall.com/tutorials/installing-wordpress-locally/
Forum: Themes and Templates
In reply to: Trailing slash in URL won’t generateHave you got a link to the problem?
Forum: Themes and Templates
In reply to: Comments link > only on posts not pages pleaseTry replacing it with this:
<?php if(is_page() ) { ?> <!-- do nothing --> <?php } else { ?> <div class="feedback"> <?php if (is_single()) wp_link_pages(); ?> <?php comments_popup_link(__('Comments (0)'), __('Comments (1)')); ?> </div> <?php } ?>Forum: Themes and Templates
In reply to: Simple mistake – Help?Add the following to the style on line 51 (#logo) of style.css in your themes template files. It currently looks like this:
#logo { display:inline; float:left; margin:26px 0 0 5px; }Make it look like this:
#logo { display:inline; background-image: url(img/your-image.gif) no-repeat scroll left top float:left; margin:26px 0 0 5px; text-indent: -9999px; }Obviously alter the name of the image for the one you have stored in the img folder of your themes template.
Forum: Fixing WordPress
In reply to: Adding tags to categoriesI am not aware of any functionality that will do that. Pretty sure you can’t. To be honest not sure why you would want to either.
Forum: Fixing WordPress
In reply to: Controlling How Images Impact the Look of a PostIn the settings back there is something that says:
Stop removing the <p> and
tags when saving and show them in the HTML editorMake sure that its ticked. It will allow you to enter down and keep the line breaks in the code. Not very CSS correct but it should work.
Forum: Themes and Templates
In reply to: function defintionLocated in:
wp-includes/comment-template.php.
as stated on the WordPress codex page
http://codex.ww.wp.xz.cn/Function_Reference/comments_template
Forum: Fixing WordPress
In reply to: highlight parent and current child category when viewing single postTry this instead:
#header ul.sf-menu li.sfHover a { background-color: #CCCCCC; }Forum: Themes and Templates
In reply to: “Blog” page title is reading as the last post title on the page…When you set WordPress to use a page for posts like you have done once that page is clicked on WordPress will use index.php in your theme as the template which displays things.
Therefore if you want a title of blog at the top you would need to put this on that template.
Put this before the loop and it should display:
<?php if(is_home() ) { ?> <h1>Blog</h1> <?php } ?>Forum: Themes and Templates
In reply to: function defintionWhich function are your talking about? You have included several in the code above?
Forum: Themes and Templates
In reply to: Simple mistake – Help?A link to the site would certainly ease a diagnosis
Forum: Fixing WordPress
In reply to: highlight parent and current child category when viewing single postWork appears to have a class of ‘sfHover’ when you are on one of the page that drop down under work. Therefore this is your stylesheet should style it:
#header ul.sf-menu li.sfHover { background-color: #CCCCCC; }The example above would make the ‘work’ link grey when viewing one of the work sub links.
Forum: Fixing WordPress
In reply to: Controlling How Images Impact the Look of a PostCreating floated elements like this is always a problem as it depends on the amount of text that you include as to where the item appears.
By choosing to ‘align right’ or ‘alignleft’ when inserting the image into the post all you are doing is floating the image with CSS. This means it will float to the left of the content that there already is in your post.
Perhaps the easiest way to fix this is to install the TinyMCE advanced plugin. With it there is an option to retain line breaks. This means that if you get it looking right in the WYSYWG editor there is more chance it will look right on the page!