How i can remove background?

hi friends

just need to fix my problem

plz open it http://www.toptensthings.com/2012/02/10-most-famous-wonders-of-the-world/ you can see just below “Categorized | Top 10, Travel” i want to make its bacground white , border 0px

thanks, waiting, attached a screenshot for understanding

Remove these lines:


#archivebox {
  background-color: #F5CCCC;
  border: 1px solid #E06666;
}

default.css line 66

thanks :slight_smile: i want all hyper links in blue, can you just tell me? thanks

a {color: blue;}

thanks a lot,
last thing, i want to add h2 heading ( with line) , i attached an image for a reference , how it should be appear

i want to put in my articles toptensthings.com kindly help me , advance thanks

The easiest way is to use something like this:

h2 {text-decoration: underline;}

or

.post-alt h2 {text-decoration: underline;}

or

.post-alt h2 a {text-decoration: underline;}

It depends on whether you wat the underline on all H2s or only some.

If you want the underline a bit further from the text, you could do this:

.post-alt h2 {
  border-bottom: 2px solid #000;
  display: inline-block; 
  padding-bottom: 3px;
}

[QUOTE=ralph.m;5063292]The easiest way is to use something like this:

i used last code , its looking great
http://www.toptensthings.com/2012/02/top-10-romantic-films-of-hollywood/
how i can add little space between h2 heading > h3 (or next paragraph

Try something like this:


h2 + h3 {padding-top: 12px;}

Adjust the padding to suit. :slight_smile:

thanks a lot of your kind help

You’re welcome! I like questions like these, because they aren’t too hard. :smiley: