gerbilk
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Sidebar Won't Align After PaginationDid you account for closing the following?
<?php if( get_query_var('paged') >= 2){ echo "<div id='news'>"; } ?>
Forum: Themes and Templates
In reply to: Sidebar Won't Align After Paginationif you take a look with firebug your sidebar div is inside your news div, probably a missed closing div. If you label all of your closing divs with <!–#div name–> you should be able to track it down.
Forum: Themes and Templates
In reply to: Add image to Sidebarif you haven’t got it get firebug for firefox, ends css headaches, just about.
Forum: Hacks
In reply to: Display post thumbnail inside of php outputadd
the_post_thumbnail( 'thumbnail' );
after the { and before $permalink = …Forum: Themes and Templates
In reply to: Add image to Sidebarli#signup{background:url(images/box.jpg) top center no-repeat scroll transparent;}
to style.css should do itForum: Themes and Templates
In reply to: use a custom thumbnail size with get_post_metaok, I think a simple way to do it would be to use this plugin https://www.ads-software.com/extend/plugins/multiple-post-thumbnails/
and use multiple featured images rather than custom fields.Forum: Themes and Templates
In reply to: Changing the space above header in Clear Style themetable.clearstyle-title { display: none; }
If you want it on some pages you’ll have to edit the theme
Forum: Themes and Templates
In reply to: Show Post category neededForum: Themes and Templates
In reply to: Create Your Own Theme?best way is to find a theme close to what you need and modify it. The firebug firefox extension will let you target elements and test out different styles which you can then edit in style.css
Forum: Themes and Templates
In reply to: Can't change header font despite CSS and header.php tweaks.the only text i can see in the header is the Gadgetsteria logo text, which is an image rather than html
Forum: Themes and Templates
In reply to: apply a new themeForum: Themes and Templates
In reply to: Changing the space above header in Clear Style themeadd/change
#header { padding: 0;}
use firebug extension in firefox to check what’s causing problems
Forum: Themes and Templates
In reply to: Post alignmentadd
.portfolio-four{350px;}
to your style-sheet when you get a very high entry with a short one next to it the next line floats against the high entry.Forum: Themes and Templates
In reply to: CSS Troubles – Sticky Footerand install firebug and right click, inspect element if you haven’t already
Forum: Themes and Templates
In reply to: CSS Troubles – Sticky Footerhi it’s partly the margin-top 150px you have applied to .container , you need to find another way to do this, maybe add an empty div inside container with a height of 150px top be hidden under your fixed div. After that it’s inconsistencies with vertical padding and height, I set footer-wrap to 138px and .container bottom margin to 163px and that works fine. You need to account for the padding when setting these values. Add a css reset to make this easier (I usually use the one from 960 grid system then adapt it to my needs).