jerocarson
Forum Replies Created
-
It was a conflict with W3Total cache. I figured it out after many failed attempts. Thanks for your support Arnee
Forum: Fixing WordPress
In reply to: HTML in Author Profile No Longer WorkingNeed help please
Forum: Themes and Templates
In reply to: How to Remove "Space" between blog title..ok thanks… ๐
Forum: Themes and Templates
In reply to: How to Remove "Space" between blog title..Thanks alot…
It worked..
This is what i did..
.clearer { height: 40px; clear: both; }and
.postcontent { float: left; font-size: 1.1em; margin-bottom: 10px /* or whatever floats your boat */ }Everything works perfectly.. i really do appreciate your time and help..
Regards
Forum: Themes and Templates
In reply to: CSS problem with Manifesto theme..
Forum: Themes and Templates
In reply to: CSS problem with Manifesto themepls can someone help me?
Forum: Themes and Templates
In reply to: CSS problem with Manifesto themepls can someone help me?
Forum: Themes and Templates
In reply to: CSS problem with Manifesto themepls can someone help me?
Forum: Themes and Templates
In reply to: Wp zoom Manifesto theme: How to remove thick borders in Hompage.After some hectic reasoning, i have it fixed,
the code weren’t there, i had to manually fix it…Thanks
Forum: Themes and Templates
In reply to: Wp zoom Manifesto theme: How to remove thick borders in Hompage.i don’t have neither code in the theme’s css pls…
Forum: Themes and Templates
In reply to: how to Remove Image Border in PostsSigh, i have been on this all day…
let me just post my entire css here…[CSS moderated as per the Forum Rules. Please just post a link to your site.]
I really need to remove this tick border from my homepage…
Forum: Themes and Templates
In reply to: how to Remove Image Border in Postswow, it worked like magic… the border smileys… thanks
Now, i decided to remove borders from homepage, i followed your guide, but i failed at it.
i do not have
div.cover img
on my css
Forum: Themes and Templates
In reply to: Pages navigation not workingYou need to find where this code is. .
<div class="navigation"> <p class="more"><?php next_posts_link(__('ยซ Older Entries', 'wpzoom')); ?><?php previous_posts_link(__('Newer Entries ยป', 'wpzoom')); ?></p> </div><!-- end .navigation --> <?php endif;?>Most time, it is usually located in navi.php. if it’s not there, just go through all the pages, till see this navigation snippet.
when you find it, do not delete anything. .. just add this
<?php if( function_exists('wp_pagenavi')) : wp_pagenavi(); else: ?>above the default Navigation code.
Hope it works…
Forum: Themes and Templates
In reply to: Pages navigation not workingTry
<?php if( function_exists('wp_pagenavi')) : wp_pagenavi(); else: ?> <div class="navigation"> <p class="more"><?php next_posts_link(__('ยซ Older Entries', 'wpzoom')); ?><?php previous_posts_link(__('Newer Entries ยป', 'wpzoom')); ?></p> </div><!-- end .navigation --> <?php endif;?>Forum: Themes and Templates
In reply to: how to Remove Image Border in Postsit doesn’t work pls. i only wanted to remove borders from post.. thanks