WordPress Custom Superfish CSS Problem [closed]
Though this isn’t a WP question, you can use the following CSS to get that third level menu to align properly. .sf-menu li li li{ top:-1px; } Hope this helps.
Though this isn’t a WP question, you can use the following CSS to get that third level menu to align properly. .sf-menu li li li{ top:-1px; } Hope this helps.
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.
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
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
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.
On line 367 of style.css you need to change .mcolumn-pad { padding-top: 2em; } to .mcolumn-pad { padding-top: 2em; background: #FFF; }
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
The answer is really simple, I never thought at first. You will simply create a custom CSS function inside your plugin and then use PHP to output the meta values and hook that to wp head.
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>
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