Hi,
I’m trying to take out this dots beside my logo, but I cant:
http://editoracontexto.com.br/blog/
Im talking about that dotted line. Can anybody please help me?
Cheers,
Diego Jock
Edit style.css on line 103: #header { position: relative; background: url(images/bk_dotted_horiz.png) 0 100% repeat-x; height: 100px; margin-top: 10px; margin-bottom: 13px; }
and change it to
#header { position: relative; height: 100px; margin-top: 10px; margin-bottom: 13px; }
—- See? Removing the background image is what we are doing.
The themes are community supported. We have a forum specifically for our free WordPress themes. Follow the link to reach them :
http://forums.site5.com/forumdisplay.php?f=104
Wow, that worked! Really thanks!
Have a nice day 🙂
You must be Logged In to post an Answer.
Not a member yet? Sign Up Now »
Answer #1
Edit style.css on line 103:
#header {
position: relative;
background: url(images/bk_dotted_horiz.png) 0 100% repeat-x;
height: 100px;
margin-top: 10px;
margin-bottom: 13px;
}
and change it to
#header {
position: relative;
height: 100px;
margin-top: 10px;
margin-bottom: 13px;
}
—-
See? Removing the background image is what we are doing.