A stupid question probably … but I'm stuck!
- Started
- Last post
- 6 Responses
- jackpot
Evening all,
I've been putting my website together - www.baar.co.uk - and am about 3/4 of the way there, but there is something bugging me...
If you click on any of the links on the home page to my work, at the bottom of each page, just above the footer deets, there is a slightly thicker black line - how the hell can I remove it?!
I'm still a bit of a novice when it comes to code so I was hoping someone might be able to shed some light on it!
B )
- sandbag0
go to your stylesheet.css
find .project_bottom
delete the css code in that class
- ETM0
Correction, I think this is the one you want, sorry (and adding to sandbag's post).
.project_bottom {
border-bottom: 1px solid #333333; <<<< THIS IS YOUR BORDER
clear: both;
margin: 15px 0;
width: 670px;
}
- ETM0
BTW... Firebug/Developer tools are your friend. Hit F12 in your browser and click on the element in question, it will show you the CSS styles affecting it.
- seeessess0
add:
* {display:none;}
the * is a specific rule for that particular issue.
- jackpot0
WOO HOO! Thanks ETM. Mucho appreciado!