Announcement

Collapse
No announcement yet.

Simple problem I am sure! With Hyperlinks

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

    Simple problem I am sure! With Hyperlinks

    I am trying to add some links to the foot of every page for search engines and cannot adjust the font size. I have added 'pinksmall' to the actinic.css but to no avail.

    Help please

    Jason
    the file is at:--http://www.healingbreeze.net/Act_BrochurePrimary.txt
    http://www.healingbreeze.net

    #2
    I can't see smallpink in the given file, as you sure its the right one as I would expect you to be editting ACT_PRIMARY not BROCHURE_PRIMARY

    Comment


      #3
      Originally posted by pinbrook
      I can't see smallpink in the given file, as you sure its the right one as I would expect you to be editting ACT_PRIMARY not BROCHURE_PRIMARY
      Sorry it should be 'pinksmall' which is in the file and css.

      Thanks

      Jason
      http://www.healingbreeze.net

      Comment


        #4
        You need something like the following in your CSS:

        a.pinksmall:link {
        color: #FFCC00;
        font-size: 10px;
        }

        a.pinksmall:visited {
        color: #FFCC00;
        font-size: 10px;
        }

        a.pinksmall:hover {
        color: #FFCC00;
        font-size: 10px;
        }

        a.pinksmall:active {
        color: #FFCC00;
        font-size: 10px;
        }

        and then this in your template:

        <a href="whatever" class="pinksmall">Click here</a>

        Comment

        Working...
        X