Inserting a DIV Block Into a Listing of Excerpts?

add a counter to your loop or use a conditional statement with $wp_query->current_post, just before the ‘endwhile’, and add the div when the counter/post number reaches a certain value. please paste the full code of your template into a http://pastebin.com/ and post the link to it here, if you need more details.

image background is cut [closed]

Your background image repeats all right – but there’s a white bar at the bottom of your image… http://dev.freelanceu.net/mjl/miamischool/wp-content/uploads/2011/12/MCCS_bg.jpg

Background tiles not working in iPad2 but ok everywhere else

As it turned out I learned something quite useful and should have stopped back to post the answer here. After quite a lot of searching I found 2 articles: http://www.teknocat.org/blog/web-dev…-scaling-quirk which linked to: http://www.defusion.org.uk/archives/…iphone-safari/ To summarize: there’s a size-limit for background images/graphics that will be properly rendered by iphones/pads. Widths and heights can vary but … Read more

Adding custom css to a wordpress plugin? [duplicate]

You can either do it the way you are doing it now, or you can use the rule of greater specificity (ex div.foo > ul#bar > li.baz is more specific than just #bar > .baz). P.S. I am not sure this is WordPress-specific.

100% Width Footer – Custom Child Theme

Looking at your code, I don’t see anything obviously wrong, but using Safari’s inspector, it becomes clear that the footer DIV is not invoking the #footer CSS rule. Not clear why. If the header div and footer div have the same styling, you can simplify your code by using one set of styles: #header, #footer … Read more

How to insert a clickable and fixed background [duplicate]

Add div after body tag and apply below style. Your site start working. <div class=”fixedHeader”></div> <style type=”text/css”> .fixedHeader{ position: fixed; height: 80px; background: white url(http://www.affiliago.it/accounts/default1/banners/SKIN_BAKECA.jpg) no-repeat no-repeat center top; width: 100%; z-index: 1000; top: 0; } </style>

Creating a custom header

If you look at the Greyzed homepage you’ll see that it is a theme which is no longer under active development. I wouldn’t recommend this as you might not be able to get the most out of your WordPress site if your theme is out of date. That being said, if you don’t have the … Read more