thaclown
Forum Replies Created
-
Its fixed for me now….
Thanks a lot Joost!
Same here,.,,.
Forum: Themes and Templates
In reply to: Post Type-specific previous post link and next post link?I’d love to know the same thing….
Forum: Plugins
In reply to: [Plugin: WordPress Popular Posts] WPP: Translation?Hey Ikki24,
Thanks for a great plugin! I would love WPML support…
Forum: Fixing WordPress
In reply to: Only show Twitter profile info if filled in….THx alot
Forum: Fixing WordPress
In reply to: borders around imagesDo you mean the Photoshop & Cinema 4D images?
They have a border borrom and right, nothing else….#colLeft img { background:none repeat scroll 0 0 #F0F0F0; border-bottom:1px solid #CCCCCC; border-right:1px solid #CCCCCC; padding:8px; }
Forum: Fixing WordPress
In reply to: Wanting to have the header fall behind contentYour image is very large… almost 800kB.
I’d use an optimized jpg in the background instead…Forum: Fixing WordPress
In reply to: Only show Twitter profile info if filled in….Ok, but lets say I want a link (with a background image of a Twitter icon)
And it should only show if the twitter field is filled in.I use this now:
<div class="post_twitter"><a href="<?php the_author_meta('twitter'); ?>" title="Twitter"><span>twitter</span></a></div>
CSS:
.post_twitter a { width: 16px; height: 16px; background: url("images/site/twitter.png") no-repeat; } .post_twitter span { display: none; }
Could you help me a bit more?
Forum: Fixing WordPress
In reply to: List_pages issueHello,
I was trying to include sIFR 3 in a dropdown navigation as well, and had the same problem.
My solution is to declare sFIR to the individual page-item classes for every nav item…
When I declare sFIR to be used for:
ul#dropmenu li.page-item-5 a
(page-item-5 is a nav item with a dropdown)
All the links in the dropdown get hidden by sFIR!The problem was that sFIR adds a
.sIFR-active ul#dropmenu li.page-item-5 a { visibility:hidden; }
And this will make all a links below the first li.page-item-5 a hidden!To fix this just add:
.sIFR-active ul#dropmenu li ul li a { visibility:visible; }
To the bottom of your CSS file, this makes all li items below another li item visible again.So now you can use sIFR for the main nav items and still use Multi-level Navigation!
EXAMPLE (my code in WordPress for the WP sIFR plugin):
ul#dropmenu li.page-item-2 a, ul#dropmenu li.page-item-5 a, ul#dropmenu li.page-item-6 a, ul#dropmenu li.page-item-138 a, ul#dropmenu li.page-item-7 a, ul#dropmenu li.page-item-174 a
Extra code below my style.css:
.sIFR-active ul#dropmenu li ul li a {visibility: visible;}
Forum: Fixing WordPress
In reply to: [Plugin: List Pages Plus] No settings?Same here… Is this plugin up-to-date?