Results 1 to 4 of 4
  1. #1

    Default links in stylesheet

    Trying to customize the links in the different divs via the stylesheet and need help understanding how it works with the different divs. For example in the code below for the a:hover definition it has several divs defined (#navEZPagesTOC, #navMain, etc)
    what happens on the divs that are not defined... as there does not appear to be an a:hover definitions for anything else.

    site is
    http://thefabricemporium.com

    user and password is fabric

    also there is a broken image icon in the logo that shows in IE but not in Firefox any tips on that would be greatly appreciated

    a:link, #navEZPagesTOC ul li a {
    color: #3300FF;
    text-decoration: bold;
    }

    a:visited {
    color: #ffffFF;
    text-decoration: none;
    }

    a:hover, #navEZPagesTOC ul li a:hover, #navMain ul li a:hover, #navSupp ul li a:hover, #navCatTabs ul li a:hover {
    color: #FF00ff;
    }

    a:active {
    color: #0000FF;
    }


    In particular I want to change the a:visited for the #navBreadCrumbs as well as some other places ie the copyright at the bottom
    can that be done here... if so what is the proper syntax


    #navBreadCrumb {
    padding: 0.5em 0.5em;
    background-color: #ffffff;
    font-size: 0.95em;
    font-weight: bold;
    margin: 0em;
    }


    Thanks
    http://shadetreehandyman.com/

  2. #2
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,196
    Plugin Contributions
    0

    Default Re: links in stylesheet

    Y,
    Let's start here:

    what happens on the divs that are not defined... as there does not appear to be an a:hover definitions for anything else.
    All you half to do is edit the stylesheet.css and add the new declaration, VIOLA, execution is complete to control the issue in the .css

    includes/ templates/ fabric/ css/ stylesheet.css
    Add the following declaration below here and place right underneath #navBreadCrumb

    #navBreadCrumb a {
    color: #000000;
    }

    Find this:
    .categoryIcon {}

    Change to this:
    #categoryIcon a{display:none;}

    Find this:
    #productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage {
    margin: 0em 1em 1em 0em ;
    }

    Change to this:
    #productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage {
    margin: 2em 1em 1em 0em ;
    }

    Add this:
    h1#productName {margin: 1em 0em 0em 0em;}

  3. #3

    Default Re: links in stylesheet

    Thanks very much... you fixed more than I asked for but that was next on my list
    Now if I could just figure out the broken image icon in my logo that show in IE
    I'm actually using a background image in the stylesheet to show the logo... seems like at the time that was easier than trying to figure out where is should be

    Thanks again

  4. #4
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,196
    Plugin Contributions
    0

    Default Re: links in stylesheet

    Quote Originally Posted by yawstick View Post
    Thanks very much... you fixed more than I asked for but that was next on my list
    Now if I could just figure out the broken image icon in my logo that show in IE
    I'm actually using a background image in the stylesheet to show the logo... seems like at the time that was easier than trying to figure out where is should be

    Thanks again
    Find this:
    #logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
    float: left;
    }

    Change to this:
    .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
    float: left;
    }

    #logo {
    display:none;
    }

 

 

Similar Threads

  1. v150 locating specific home page image/links (currently dead links)
    By irish_1985 in forum Templates, Stylesheets, Page Layout
    Replies: 12
    Last Post: 15 Sep 2012, 09:59 PM
  2. Custom Links In Footer-Space Under Logo- And Links To Sidebar
    By Kaniki in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 27 Sep 2010, 04:48 PM
  3. Need Help with stylesheet for different color links
    By jessica_aw in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 21 Aug 2009, 07:17 PM
  4. Replies: 1
    Last Post: 11 Jun 2007, 05:33 PM
  5. Stylesheet Links Problem
    By chemdata in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 31 Aug 2006, 05:27 PM

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