jmivaldi
Member
Posted 1 year ago #
Hello! I've been trying to remove the thin border line from my blog background, but I can't seem to find the problem. I deleted the border action from the #wrap:
#wrap {
margin: 5px auto;
padding: 0;
width: 980px;
border: 1px solid #ccc;
background: #fff;
}
I also tried putting the border action in between */ & /*, and still the thin line border doesn't go away. Am I doing this correctly?
My blog is http://www.jeanelleechols.com/donaana
Modify it as
#wrap {
margin: 5px auto;
padding: 0;
width: 980px;
border:none;
background: #fff;
}
jmivaldi
Member
Posted 1 year ago #
still didn't work, but thanks for replying :)
it'll work..
border is specified in other place also.
you may give element style in your template file as
<div style="border:none;" id="wrap">
and it'll work
The css you want to remove is in your embedded styles in your header.
I think they look good though.
jmivaldi
Member
Posted 1 year ago #
It worked!!! Thank you sooo much :)