Results 1 to 10 of 11

Threaded View

  1. #7
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Side Box Header Images

    IE has a tendency to try to cover for users' mistakes and show what it thinks they probably want. Firefox more often shows exactly what you tell it to, and if you make a mistake in that, it won't work.

    You have an extra comma in several stylesheet rules, which is a CSS error:
    Code:
    .leftBoxHeading, {
            margin: 0em;
            background: url(../images/sidebox_header.gif) #FFffff;
            padding: 0.5em 0.2em;
            }
    
    .rightBoxHeading, {
            margin: 0em;
            background: url(../images/sidebox_header.gif);
            padding: 0.5em 0.2em;
            } 
    
    .centerBoxHeading, {
    	margin: 0em;
    	background-color: #ffffff;
    	background-image: url(../images/centerbox_header.gif);
    	padding: 0.5em 0.2em;
    	}
    
    .leftBoxContainer, { 
    	margin: 0em;
    	border: 0px solid #9a9a9a;
    	border-bottom: 0px solid #336633;
    	margin-top: 0em;
            padding-bottom: 20px;
            background-image: url(../images/sidebox_footer.gif);
            background-position: bottom center;
            background-repeat: no-repeat;
    	}
    
    .rightBoxContainer {
            margin: 0em;
    	border: 0px solid #9a9a9a;
    	border-bottom: 0px solid #336633;
    	margin-top: 0em;
            padding-bottom: 20px;
            background-image: url(../images/sidebox_footer.gif);
            background-position: bottom center;
            background-repeat: no-repeat;
    	}
    The rules with this error are being completely ignored, per CSS standards.

    .leftBoxHeading, {

    should be

    .leftBoxHeading {


    I notice that most of your sidebox titles are displaying a "no break space" instead of a title. Is this intentional?
    Last edited by gjh42; 18 Dec 2008 at 10:41 AM.

 

 

Similar Threads

  1. Replies: 2
    Last Post: 13 Jun 2011, 04:22 PM
  2. Side Box Header Images
    By prettyeyes1 in forum Basic Configuration
    Replies: 2
    Last Post: 7 Mar 2010, 03:33 AM
  3. What's new images/side box images
    By TinkerDesign in forum Basic Configuration
    Replies: 3
    Last Post: 10 Aug 2009, 04:41 PM
  4. Header/side box bar images
    By Nappy Nature in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 18 Jan 2007, 11:01 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg