I am not getting a 403 error. just the footer menu not taking the styling. but no error is showing up.
YEAH!!! THANK YOU CLYDE.
I was able to simply change the Permissions and Viola! Here we go!
Great. I didn't have to call my hosting service.
It looks MUCH better!
BTW, is there a reason why your css came into my css file with 600 permissions? Just so I can watch out for this in the future.
Again thank you for your patience with a new zenman.
Cheers,
For some reason I just can not change the background of the column holding the EZ pages. Where there are not EZ pages, the color of the background does not fill.
http://www.stitchboutiqueboston.com
TIA Tom
one reason might be that you are overriding the background color in the following declaration:
delete the background:none; declaration
#navSuppWrapper {
/* border:1px solid #ccc; */
margin: 1px 0px 0;
padding: 0;
background-color:#f6e2dd;
background:none;
font-weight: #500;
color: #f6e2dd;
width: 923px;
height: 150px;
font-family: verdana,arial,lucida,sans-serif;
}
Set the background-color for #navSuppWrapper {} instead of dd {}, and adjust the height and margins as desired to get the bottom edge of the bg color where you want it.
You can also set the width of dd{} to 24.91% to make it fill the space exactly (you might need to make it 24.9% to fit in all browsers).
You weren't online when I started to answer, Clyde, so I thought I'd give a quick reply... didn't look at the actual stylesheet, though - Firebug can be misleading:)
Hi there - I have a questions - I've added a new item called "RETURNS" under the Customer Service footer column - however it doesn't show up after adding it. I don't receive any errors, I can add it to the left side Information box and the link works correctly. Is there something defining only 5 items??
Here is my code:
/*BOF Menu Column 3 link Definitions*/
Define('TITLE_THREE', '<li class="menuTitle">Customer Service</li>');
Define('CONTACT','<li><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a></li>');
Define('SHIPPING', '<li><a href="' . zen_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a></li>');
Define('PRIVACY', '<li><a href="' . zen_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a></li>');
Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>');
Define('ACCOUNT', '<li><a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') .'">' . HEADER_TITLE_MY_ACCOUNT . '</a></li>');
Define('RETURNS', '<li><a href="' . zen_href_link(FILENAME_RETURNS, '', 'SSL') .'">' . BOX_INFORMATION_RETURNS . '</a></li>');/*EOF Menu Column 3 link Definitions*/
Bookmarks