Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 4 of 4

Thread: underline product name

  1. #1
    caraj is offline Member
    Join Date
    Dec 2009
    Posts
    79

    Default underline product name

    Can someone tell me how to remove the underline for the product names?
    I want to still have them link to the product but remove the underline like they do here. The underline shows only when you hover your mouse over the name.

    http://www.gloriajeans.com/c-14-choc...la-lovers.aspx

    I have the code if it is easier to do it that way

  2. #2
    Richnyc30 is offline Senior Member
    Join Date
    Mar 2009
    Posts
    340

    Default Underlining

    It's probably in the styles.css file. It's just a change in the appropriate style. Of course, I'm not sure which XML package you are using, but most style issues are in the skin's css file.

  3. #3
    George the Great is offline Senior Member
    Join Date
    Nov 2006
    Location
    Cleveland, OH
    Posts
    1,792

    Default

    In the style.css file you'll find a section for anchors
    Code:
    a:active, a:link, a:visited
    {
        color: #112837;
        text-decoration: underline;
    }
    Just change underline to none
    Code:
    a:active, a:link, a:visited
    {
        color: #112837;
        text-decoration: none;
    }
    Immediately under that should be a definitely for anchor hovers
    Code:
    a:hover
    {
        color: #4776BD;
    }
    Just add an underline text decoration to that
    Code:
    a:hover
    {
        color: #4776BD;
        text-decoration: underline;
    }
    <a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>

  4. #4
    caraj is offline Member
    Join Date
    Dec 2009
    Posts
    79

    Default

    Thanks for that info, it worked great