pixelrow
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing font color in nav/menurather than trying to change it using:
.sf-menu a {use this:
.sf-menu li a { color: #000; }Should work.
Forum: Fixing WordPress
In reply to: cant remove menu or menu itemMore details would be helpful… your site address. Which version of WP and the theme.
Forum: Fixing WordPress
In reply to: Displaying Featured Image CaptionApologies this is correct code that I have modified to use:
This is how I display it:
<div class="f_image"> <?php if ( has_post_thumbnail()) : ?> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" > <?php the_post_thumbnail(); ?> <?php the_post_thumbnail_caption(); ?></a> <?php endif; ?> </div>and the CSS:
—-
All help is appreciated.
Forum: Fixing WordPress
In reply to: Uniqe Sidebars change to default with single post displaySolved it my self:
because the category was unique to each template so added this conditional code in the single post file.
<?php
if ( in_category(‘translations’) ) :
get_sidebar(‘translations’);
elseif ( is_404() ) :
get_sidebar(‘404’);
else :
get_sidebar();
endif;
?>Forum: Fixing WordPress
In reply to: how do I centre the site navigation menu?? Please help!I think THIS TIME I have definitely spotted your problem
Its this bit of code.
#greendrop {
display: block;
float: left;
margin: 0 auto;
position: relative;
text-transform: uppercase;
}Delete this:
float: left;Forum: Fixing WordPress
In reply to: how do I centre the site navigation menu?? Please help!I am not sure why that didn’t work…..
Try adding it here
#greendrop ul {
margin-top: 0.5em;
}or with the previous – add the float:left – and then add margin: 0 auto;
Forum: Fixing WordPress
In reply to: how do I centre the site navigation menu?? Please help!Theme wise – definitely change it. I would recommend just using the twentyelven theme.
Its far better. But you have to get quite good at HTML and CSS if you want to make changes.
Forum: Fixing WordPress
In reply to: how do I centre the site navigation menu?? Please help!Sorry I am with you now. – You want to center the menu. Its the advice from Samuel B. that was confusing.
Find this:
#menu ul {
float: left;
position: relative;
}Delete:
float: left;Instead:
margin: 0 auto;
Should work fine… this time 😉
Forum: Fixing WordPress
In reply to: how do I centre the site navigation menu?? Please help!I take it you have figured it out 🙂 Look ok – or was there something else?
Forum: Fixing WordPress
In reply to: how do I centre the site navigation menu?? Please help!Apologies, this is a strange one – try adding this – margin: 0 auto.
Forum: Fixing WordPress
In reply to: how do I centre the site navigation menu?? Please help!Now just change it back to float:left. Then should be fine.
Forum: Fixing WordPress
In reply to: create new "ul" once reached category limit with wp_list_categoriesWebsite url, please?
Forum: Fixing WordPress
In reply to: FaviconComplete close down browser – or if you know how to refresh cache do it.
A restart – even of the whole computer. Then if the changes are not displayed – you have done something wrong.But you probably haven’t. 🙂
Forum: Fixing WordPress
In reply to: custom logo in header covering up page linksYour css file.
Forum: Fixing WordPress
In reply to: how do I centre the site navigation menu?? Please help!Sorry – either delete or set to 0