Jump to content

CSS: Text Attributes Not Working


justravis

Recommended Posts

Why are you putting spans inside your anchors? That is what is causing your troubles. Get rid of the span tags, and put all the CSS declarations onto the anchor itself. That will solve your problem.

 

Or if you are really dead set on keeping the span tags for some odd reason, then apply the text-decoration to the anchor, not the span.

Link to comment
Share on other sites

No. You give the links that you want to be different, a class name.

 

For example, if all your a links are defined like this:

 

a {color: blue;}

 

And you have menu links that you want to be a different color, you write the menu links this way:

 

<a class="menu_link">link text</a>

 

Then in your CSS, you change the link color like this:

 

a.menu_link {color: red;}

 

By attaching the class name to the a, it overrides the original CSS for those links only.

 

Basic CSS is really quite easy. Spend some time doing some tutorials (the ones on HTML dog are apparently good) and you can save yourself troubles like this.

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.