Jump to content

Amazon Associate link formatting with CSS


ArizonaJohn

Recommended Posts

Hello,

 

The link below was black with no underline, then black with an underline when hovered.  This is what I wanted.  Then I turned it into an Amazon Associate link, and now it's blue & underlined.  I'm still using the same CSS as before (links2), so I don't understand why it changed format.

 

How can I get the link to be black with no underline, then black with underline when hovered?

 

Thanks in advance,

 

John

 

 

The link:

'<a type="amzn" category="books" class="links2">'.$row['site'].'</a>'

 

 

CSS:

a.links2:link {
color: #000000;
text-decoration: none;
text-align:left;
    margin-top:6px;
    margin-bottom:2px;
margin-left:2px;
    padding:0px;
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
height: 12px;
vertical-align:middle;
}

a.links2:visited {
color: #000000;
text-decoration: none;
text-align:left;
    margin-top:6px;
    margin-bottom:2px;
margin-left:2px;
    padding:0px;
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
height: 12px;
vertical-align:middle;
}

a.links2:hover {
color: #000000; text-decoration: underline;
text-align:left;
    margin-top:6px;
    margin-bottom:2px;
margin-left:2px;
    padding:0px;
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
height: 12px;
vertical-align:middle;
}

a.links2:active {
color: #000000;
text-align:left;
    margin-top:6px;
    margin-bottom:2px;
margin-left:2px;
    padding:0px;
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
height: 12px;
vertical-align:middle;
}

 

 

Link to comment
Share on other sites

The type attribute is what tells the browser the content type of the resource named in "href" attribute. So it has to be something like,

<a type="text/html" category="books" class="links2">link</a>

or

<a type="image/jpg" category="books" class="links2">Link</a>

Your attribute is wrong.

Link to comment
Share on other sites

I'm taking a stab in the dark here - never worked with types in links, nor with amazon. But try giving the link an ID and targeting the ID with your CSS. If that doesn't work, try adding the name of a parent above the ID in the selector, for example:

 

div#parent_div a#target
{
  // do some stuff
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.