nairda
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Customize Search Form CSS-Hi DB,
I’ve the opposite problem. I’ve been able to style both search boxes but only the main search button. I’m using this CSS,
/*Code to change the search form textbox colour styles in right column*/ #sidebar #searchform #s { width: 108px; padding: 2px; color: #000; background: #FFCCF5; border: 1px solid #FE4FDC; } /*Code to change the main search form textbox colour styles*/ #searchform #s { width: 158px; padding: 2px; color: #000; background: #FFCCF5; border: 1px solid #FE4FDC; } #searchsubmit { color: #000; border: none; width: 93px; height: 25px; background: #fff url('images/search_btn.jpg') no-repeat bottom center; }Problem is the Sidebar search button doesn’t have an ID associated with it and I can’t find where this is to change it. Updating searchform.php has no effect!
It would be great if you could let me know how you solved it.
Many thanks,
Adrian
Forum: Fixing WordPress
In reply to: Missing navigationHi again,
I’ve searched everywhere for a solution to this but no luck. On any of the ‘Archive’ pages the Previous and Next links are not displaying. How can I make them appear?
In ‘archive.php’ there is this code:
<div class="navigation"> <div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div> <div class="alignright"><?php previous_posts_link('Next Entries »') ?></div> <div>but when published it only uses the code:
<div class="navigation"> <div class="alignleft"></div> <div class="alignright"></div> </div>How can I make the links appear like on http://arsenalnewsblog.com/2007/04/page/2/
None of the WordPress Help pages have code that works for this in the default template.
Thanks again,
Adrian