BunnyB
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Enhanced WP Contact Form] Broken with 2.8.1?Works great! Thank you, Joost!
Forum: Plugins
In reply to: [Plugin: Enhanced WP Contact Form] Broken with 2.8.1?Well, I can’t get that to work either. I might be putting it in the wrong place but I’ve tried several spots.
Forum: Plugins
In reply to: [Plugin: Enhanced WP Contact Form] Broken with 2.8.1?Same problem here. I was hoping Joost would be in here with a fix. I will try the above workaround for now.
Forum: Themes and Templates
In reply to: Excluding pages from tabsI 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');Forum: Themes and Templates
In reply to: Possible to layer animated gif over jpg header?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?Forum: Themes and Templates
In reply to: Excluding pages from tabsJust bumping this in hopes of a helping hand!
Forum: Themes and Templates
In reply to: Excluding pages from tabsOkay, 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?
Forum: Themes and Templates
In reply to: Possible to layer animated gif over jpg header?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?
Forum: Themes and Templates
In reply to: Excluding pages from tabsForgive 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?
Forum: Themes and Templates
In reply to: Possible to layer animated gif over jpg header?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!
Forum: Themes and Templates
In reply to: Excluding pages from tabsThanks 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!
Forum: Fixing WordPress
In reply to: RSS button link problemThat did it – thank you so much! Code certainly is my weakness. One of my weaknesses. 🙂
Forum: Fixing WordPress
In reply to: RSS button link problemWondering 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!
Forum: Fixing WordPress
In reply to: RSS button link problemThanks for your reply. Where are you looking? I’m confused as usual. Thanks.
Forum: Fixing WordPress
In reply to: <p></p> and <br /> in posts not working?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.)