Open Source Tutorials - Open Source Training
Open source training & tutorials from experienced, passionate people
chrome icon firefox icon ie icon opera icon safari icon Sings in these Browsers
A- A A+

By A Web Design

Welcome, Guest
Username Password: Remember me

Style sheet only for the body section
(1 viewing) (1) Guest
All your queries regarding CSS will be solved in this forum
  • Page:
  • 1
TOPIC:

Style sheet only for the body section

Style sheet only for the body section 10 months, 4 weeks ago #656

  • yoko
Hi guys,

I want to apply style sheet only for the body section and not for header and footer. in this I tried to apply the following style sheet for each page, with different colors. But the links in headers and footers are also changed. Please help me to solve this problem.

<s-tyle>
<!--A:link { text-decoration: none; color: orange }
A:active { text-decoration: none; color: orange }
A:visited { text-decoration: none; color: orange }
A:hover { text-decoration: underline; color: orange }-->
</style>

Re: Style sheet only for the body section 10 months, 3 weeks ago #660

  • dhuruv
  • OFFLINE
  • Senior Boarder
  • Posts: 60
  • Karma: 0
The CSS you have is not only in the wrong order to work properly, but it should be in the <head></head> tags of your page, not in the body of the page itself. The correct order is:

a:link
a:visited
a:hover
a:active

All you need to do is surround the body section of your page with a <div>, give it an id and then write the CSS for it. It could look something like this:

<s-tyle type="text/css">
#content a:link, #content a:visited, #content a:active {text-decoration: none; color: orange; }
#content a:hover { text-decoration: underline; color: orange }
</style>

And the page would look like this:

<div id="content">
<p>Page information <a href="page.html">Link</a></p>
</div>
  • Page:
  • 1
Time to create page: 1.26 seconds
OSV Newsletter


Receive HTML?

NOTE: To prevent subscription to the OSV newsletter, uncheck the checkbox above.
Guest Blog for OSV
Free Ebook Download