Announcement

Collapse
No announcement yet.

Information link text.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Information link text.

    Is there a way to have the "information link text" in a different colour to the standard link colour that has been chosen for the main page.

    As we use white text and white links but of course the link text is not very clearly shown.

    Any assistance will be greatly appreciated.


    Craig
    www.shopstuff.co.uk

    #2
    This is done by adding a new class of link into the Actinic stylesheet (actinic.css). For example:

    a.custom:link{
    color:black;
    font-size:x-small;
    text-decoration:none;
    }

    a.custom:visited{
    color:black;
    font-size:x-small;
    text-decoration:none;
    }

    a.custom:hover{
    color:red;
    font-size:x-small;
    text-decoration:underline;
    }

    a.custom:active{
    color:red;
    font-size:x-small;
    text-decoration:none;
    }

    Then go to 'Design | Text'. Click 'Go to' and go to prompt ID '1191'. Change it to read:

    <A HREF="%s" class="custom">

    Comment

    Working...
    X