spk
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Menu problem with Tanzaku themeto eliminate the menu/header jump from left to right whenever the page reloads, add padding 0 to the #grid-wrapper class e.g.:
#grid-wrapper { margin: 0; padding: 0; padding-top: 1000px; /* Prevent flicker in grid area. Check header.php. */ }
the header fadein/fadeout could be removed by commenting out these parts out of header.php:
$(‘#header’).css(“visibility”, “hidden”);
and:
setTimeout(function() {
$(‘#header’).hide().css(“visibility”, “visible”).fadeIn(500);
}, 500);Forum: Themes and Templates
In reply to: tanzaku theme / recent post shows up doublewill appreciate some advise
Forum: Themes and Templates
In reply to: Menu problem with Tanzaku themehi there, i’m having the very same menu trouble… it jumps out of the grid and then back in to its position whenever there’s a reload.
did you manage to solve it?
…or, does anyone else have a clue?
Forum: Themes and Templates
In reply to: filter category in index loopthanks very much for your reply. alternatively, what i did was to put this code right after <?php get_header();?> :
<?php global $wp_query; query_posts( array_merge( array('category_name' => 'featured', 'orderby' => 'rand', 'showposts' => '8'), $wp_query->query ) );?>
worth mentioning: it’s the Tanzaku theme we’re dealing with here.
thanks!
Forum: Fixing WordPress
In reply to: trouble with getting pretty permalinks – please advisei think a cheap work-around would be to disable permalinks for Categories but remain them for Posts. is that even possible to do?
Forum: Fixing WordPress
In reply to: trouble with getting pretty permalinks – please adviseplease?
Forum: Plugins
In reply to: permanent, floating footerForum: Plugins
In reply to: sort by archives in dropdown menuthanks very much.
Forum: Themes and Templates
In reply to: styling wp_list_catsor, if i already use the before pseudo, how should i prevent it from putting a character before the first element? cause what i get now looks like:
|| NEWS | ABOUT | LINKS | RECENT | WHATEVER
Forum: Themes and Templates
In reply to: styling wp_list_catsany other trick to do that without using the before pseudo-element?
Forum: Themes and Templates
In reply to: styling wp_list_catsthanks. works, more or less. but generated content is not supported by the crappy IE, right?