aaanorton
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Removing comments from certain pagesI’ve been playing with this some more and found that if you want more than one page to be affected, you must use array.
So<?php if (!is_page('about', 'contact-me')) : ?>
sould read<?php if (!is_page(array('about', 'contact-me'))) : ?>
At least that’s how I got mine working with multiple pages. I’m on WP 2.7.1
Forum: Themes and Templates
In reply to: Removing comments from certain pagesOne more quick question… How do I find a page’s ID?
Thanks again.
Forum: Themes and Templates
In reply to: Removing comments from certain pagesThank You!
I’ve been working on this for days without success… I’m no coder whatsoever and have been doing trial/error.
Much appreciated.
Forum: Themes and Templates
In reply to: Parent-page Header different from sub-page headerSolved it!
I had my image URL in wrong. I changed:
a#rollover { background-image:url(../logo.gif);
to:
a#rollover { background-image:url(../../../logo.gif);
Duh. Well that was fun.
Forum: Themes and Templates
In reply to: Parent-page Header different from sub-page headerOK, so I got rid of my rollover code and now a static logo displays properly on all pages. Yay.
But now I need to fix the rollover. Here’s what I had in header.php:<a href="https://www.slashdigi.com" id="rollover"><span>slashdigi</span></a> <style type="text/css" media="screen"> <!-- a#rollover { background-image:url(../logo.gif); height: 43px; width:225px; display:block; } a#rollover span { display:none; } a#rollover:hover { background-image:url(../logoon.gif); } --> </style>
Any idea what is wrong with this?
Thanks.
Forum: Themes and Templates
In reply to: Parent-page Header different from sub-page headerSo I’ve tried everything I can think of. Admittedly, that’s not much, but I can’t get this resolved. All of my sub-pages (Pricing) do not show my logo. Can anyone help me out here?
Thanks.
Forum: Plugins
In reply to: User based photo gallery with viewing permissiosanyone?