Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)
  • Works great! Thank you, Joost!

    Well, I can’t get that to work either. I might be putting it in the wrong place but I’ve tried several spots.

    Same problem here. I was hoping Joost would be in here with a fix. I will try the above workaround for now.

    Thread Starter BunnyB

    (@bunnyb)

    I finally found the answer. I replaced
    wp_list_pages('title_li=');
    with
    wp_list_pages('title_li=&depth=3&sort_column=menu_ order&exclude=21');

    Thread Starter BunnyB

    (@bunnyb)

    I’m back! Thank you very much for the z-index reminder, that brought the gif to the front. I still have weird things happening, though. Here’s my css:

    div.Header
    {
      margin: 0 auto;
      position: relative;
      z-index:-1;
      width: 898px;
      height: 150px;
    }
    
    div.Header-jpeg
    {
      position: relative;
      z-index:0;
      top: 0;
      left: 0;
      width: 898px;
      height: 150px;
      background-image: url('images/header.jpg');
      background-repeat: no-repeat;
      background-position: center;
    }
    
    #gif {
      height: 167px;
      width: 150px;
      background: url(images/sparkle-test.gif) no-repeat;
      position: absolute;
      top: 0;
      left: 50;
      z-index:500;
    }

    And here’s what’s in header.php:

    <div class="Header">
    
    <div class="Header-jpeg">
    <div id="gif"></div>
    </div></div>

    (I’ve changed the file names so the background is header.jpg and the animation is sparkle-test.gif.)
    Here’s the link
    Try to get past the fact that the animation itself is HIDEOUS! It was just a quick test. The “s” is cut off the word “clothes,” and I can’t get it to move to the right. Any idea what I’m doing wrong?

    Thread Starter BunnyB

    (@bunnyb)

    Just bumping this in hopes of a helping hand!

    Thread Starter BunnyB

    (@bunnyb)

    Okay, I found this code in the functions.php file:

    if (null === $isHomeSelected)
    		$isHomeSelected = is_home();
        if (true === $showHomeMenuItem)
    	echo '<li><a' . ($isHomeSelected ? ' class="active"' : '') . ' href="' . get_option('home') . '"><span><span>'
    		. $homeMenuItemCaption . '</span></span></a></li>';
    	add_action('get_pages', 'art_header_page_list_filter');
    	add_action('wp_list_pages', 'art_list_pages_filter');
    	wp_list_pages('title_li=');
    	remove_action('wp_list_pages', 'art_list_pages_filter');
    	remove_action('get_pages', 'art_header_page_list_filter');
    }

    Here’s the number of the page I want to exclude: wp_list_pages('exclude=21');

    Where would I put that?

    Thread Starter BunnyB

    (@bunnyb)

    Hmm, I have the header showing up but not the gif in front. Here’s what I have in header.php:

    <div class="Header">
     <div class="Header-jpeg">
    
    <div id="gif"><img src="animated-header-front.gif" />
    </div>
    </div>

    And here’s what’s in my stylesheet:

    /* begin Header */
    div.Header
    {
      margin: 0 auto;
      position: relative;
      z-index:0;
      width: 898px;
      height: 150px;
    }
    
    #gif {
      height: 898px;   /* use the actual height of the gif */
      width: 150px;   /* use the actual width of the gif */
      background: url(images/animated-header-front.gif) no-repeat; /* use your filename */
      position: absolute;
      top: 0px;
      left: 0px;
    }
    
    div.Header-jpeg
    {
      position: relative;
      z-index:-1;
      top: 0;
      left: 0;
      width: 898px;
      height: 150px;
      background-image: url('images/header-background.jpg');
      background-repeat: no-repeat;
      background-position: center center;
    }
    /* end Header */

    I’m sure I’m missing something obvious, because I am not so good with css yet. Can someone set me straight?

    Thread Starter BunnyB

    (@bunnyb)

    Forgive me, but wouldn’t these suggestions just remove it from the Pages widget in the sidebar? Would it still appear in the navigation tab on top?

    Thread Starter BunnyB

    (@bunnyb)

    Hey, thanks for the great instructions! I will try this tomorrow when I’m more awake and see how it goes.

    I appreciate your help!

    Thread Starter BunnyB

    (@bunnyb)

    Thanks for replying. I can’t find anything like that, other than the Pages widget, where I can exclude them from the sidebar. I don’t see a Theme Options Panel or anything similar.

    I will check out the plugin further but I have a feeling it is specific to sidebars, not tab situations, which I suppose are different in every theme. I could be wrong!

    Thread Starter BunnyB

    (@bunnyb)

    That did it – thank you so much! Code certainly is my weakness. One of my weaknesses. 🙂

    Thread Starter BunnyB

    (@bunnyb)

    Wondering if anyone could help me on this. I have put the code above in the text widget, but it doesn’t work and it’s gone again next time I go into the widget. I know I must be missing something simple. Help? Thanks!

    Thread Starter BunnyB

    (@bunnyb)

    Thanks for your reply. Where are you looking? I’m confused as usual. Thanks.

    BunnyB

    (@bunnyb)

    I am also having this problem and it’s making me nuts. I’m using Firefox on a Mac. I’ve tried turning off the visual editor and it still removes my paragraph breaks and messes up my AdSense code. Somebody please, please help us figure this out! (I couldn’t find a problem in the stylesheet as suggested by the post above.)

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