Title: spk's Replies | WordPress.org

---

# spk

  [  ](https://wordpress.org/support/users/spk/)

 *   [Profile](https://wordpress.org/support/users/spk/)
 *   [Topics Started](https://wordpress.org/support/users/spk/topics/)
 *   [Replies Created](https://wordpress.org/support/users/spk/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/spk/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/spk/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/spk/engagements/)
 *   [Favorites](https://wordpress.org/support/users/spk/favorites/)

 Search replies:

## Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Menu problem with Tanzaku theme](https://wordpress.org/support/topic/menu-problem-with-tanzaku-theme/)
 *  [spk](https://wordpress.org/support/users/spk/)
 * (@spk)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/menu-problem-with-tanzaku-theme/#post-1571325)
 * to 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](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [tanzaku theme / recent post shows up double](https://wordpress.org/support/topic/tanzaku-theme-recent-post-shows-up-double/)
 *  Thread Starter [spk](https://wordpress.org/support/users/spk/)
 * (@spk)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/tanzaku-theme-recent-post-shows-up-double/#post-1968182)
 * will appreciate some advise
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Menu problem with Tanzaku theme](https://wordpress.org/support/topic/menu-problem-with-tanzaku-theme/)
 *  [spk](https://wordpress.org/support/users/spk/)
 * (@spk)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/menu-problem-with-tanzaku-theme/#post-1571322)
 * hi 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](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [filter category in index loop](https://wordpress.org/support/topic/filter-category-in-index-loop/)
 *  Thread Starter [spk](https://wordpress.org/support/users/spk/)
 * (@spk)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/filter-category-in-index-loop/#post-1947795)
 * thanks 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [trouble with getting pretty permalinks – please advise](https://wordpress.org/support/topic/trouble-with-getting-pretty-permalinks-please-advise/)
 *  Thread Starter [spk](https://wordpress.org/support/users/spk/)
 * (@spk)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/trouble-with-getting-pretty-permalinks-please-advise/#post-1557499)
 * i 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [trouble with getting pretty permalinks – please advise](https://wordpress.org/support/topic/trouble-with-getting-pretty-permalinks-please-advise/)
 *  Thread Starter [spk](https://wordpress.org/support/users/spk/)
 * (@spk)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/trouble-with-getting-pretty-permalinks-please-advise/#post-1557498)
 * please?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [permanent, floating footer](https://wordpress.org/support/topic/permanent-floating-footer/)
 *  Thread Starter [spk](https://wordpress.org/support/users/spk/)
 * (@spk)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/permanent-floating-footer/#post-1293167)
 * resolved
 * [http://joeabiraad.com/website-production/how-to-do-a-fixed-footer-using-only-css/184](http://joeabiraad.com/website-production/how-to-do-a-fixed-footer-using-only-css/184)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [sort by archives in dropdown menu](https://wordpress.org/support/topic/sort-by-archives-in-dropdown-menu/)
 *  Thread Starter [spk](https://wordpress.org/support/users/spk/)
 * (@spk)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/sort-by-archives-in-dropdown-menu/#post-1252762)
 * thanks very much.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [styling wp_list_cats](https://wordpress.org/support/topic/styling-wp_list_cats-1/)
 *  Thread Starter [spk](https://wordpress.org/support/users/spk/)
 * (@spk)
 * [17 years, 7 months ago](https://wordpress.org/support/topic/styling-wp_list_cats-1/#post-867595)
 * or, 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](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [styling wp_list_cats](https://wordpress.org/support/topic/styling-wp_list_cats-1/)
 *  Thread Starter [spk](https://wordpress.org/support/users/spk/)
 * (@spk)
 * [17 years, 7 months ago](https://wordpress.org/support/topic/styling-wp_list_cats-1/#post-867594)
 * any other trick to do that without using the before pseudo-element?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [styling wp_list_cats](https://wordpress.org/support/topic/styling-wp_list_cats-1/)
 *  Thread Starter [spk](https://wordpress.org/support/users/spk/)
 * (@spk)
 * [17 years, 7 months ago](https://wordpress.org/support/topic/styling-wp_list_cats-1/#post-867592)
 * thanks. works, more or less. but generated content is not supported by the crappy
   IE, right?

Viewing 11 replies - 1 through 11 (of 11 total)