Results 1 to 10 of 11

Hybrid View

  1. #1
    Join Date
    Feb 2005
    Location
    New Jersey
    Posts
    646
    Plugin Contributions
    0

    Default Side Box Header Images

    What is the best way to add an image to the left of the side box header. I want to an image next to Categories, New Products, etc. Also how would I use an image as a link seperator in the ez-Pages nav bar?

    Thanks in advance for any help.

    Kelly

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

    Default Re: Side Box Header Images

    Do you want the same image in each, or individual images? Do you want the image within the heading, or off to the left of the sidebox?

  3. #3
    Join Date
    Feb 2005
    Location
    New Jersey
    Posts
    646
    Plugin Contributions
    0

    Default Re: Side Box Header Images

    Hi,

    I want a small heart off to the left of each sidebox name in the heading. So a heart on the left side of the word Search, Categories, Links etc. and in the middle to the left of Featured Products and New Products. That one I can probably do with css and a background image. I am just unsure of the best way to do it.
    The other place I want a smaller heart is between the links on the ez-page bar instead of the dots that are there now as a separator.
    BTW I really like your categories Dressing mod but I can't seem to get it right...
    I would like to separate the Lingerie and Games with a divider and have a non link heading but I need to play with it more.

    Thanks,
    Kelly

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

    Default Re: Side Box Header Images

    Add to your stylesheet
    Code:
    .leftBoxHeading, .rightBoxHeading {
        background: #112233 url(../images/heart.gif) left center no-repeat;
        padding-left: 23px;
        }
    Change color, filename & padding to suit.

  5. #5
    Join Date
    Feb 2005
    Location
    New Jersey
    Posts
    646
    Plugin Contributions
    0

    Default Re: Side Box Header Images

    Hi Glenn,

    Thank you for your help. That worked great!

    Thanks again!
    Kelly

  6. #6
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Side Box Header Images

    Quote Originally Posted by sleepless View Post
    Also how would I use an image as a link seperator in the ez-Pages nav bar?

    Thanks in advance for any help.

    Kelly
    open admin -> configuration -> EZ-Pages Settings ->
    EZ-Pages Header Link Separator

    click the edit button and add the following in the input box

     ♥ 

    click the update button and you're all set.

  7. #7

    Default Re: Side Box Header Images

    I added header images to my sideboxes and my centerbox in order to give it a a rounded look. check out www.kekescookies.com/cookiestore.

    The problem is that the header images only show up in ie, but not in firefox.

    What do I do?

  8. #8
    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.

  9. #9

    Default Re: Side Box Header Images

    Thanks so much!

  10. #10

    Default Re: Side Box Header Images

    and the &nbsp is just to make my sidebox images fit well. it is intentional, although maybe not the best code...

 

 

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