http://www.aoerealm.com

The theme I'm using is basically pushbutton, with tweaked source and images (the xhtml version of pushbutton).

Ok heres my problem. Under each of the block names (Navigation, Poll, Latest Image, Search, etc) there is a blue bar. I've searched the images, and its not an image, I've searched the CSS for hr and there is nothing. My only thought is that it could be html stored in the database. All I want to do is change the colour of them.

Does anybody know how to fix it?

Thanks,

HMD

Comments

nevets’s picture

In your style.css you will find this rule

.block .title h3 {
  border-bottom: 2px solid #6699cc;
  color: #9E4C16;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 5px 10px 30px;
  margin-bottom: .25em;
  background: transparent url(icon-block.png) left center no-repeat;
}

The 'border-bottom' style produces the line. You can disable it by removing border-bottom: 2px solid #6699cc; or replacing 2px solid #6699cc; with 0;. The width is controlled by '2px' and the color by '#6699cc'.