Hi there,
I would like to change the length of the border bottom of the header_main so it looks like this:
https://www.dropbox.com/s/8ixjgne1ftwfy8w/Untitled-1.jpg
The relevant url is the following: http://videyou.nu/wp/
Any suggestions on how to do this?
Thank you very much!
Ben
Hey Ben!
Can you please give us a link to the website? I’m not sure what part of the header the screenshot is pointing to because of the modifications that you did with the theme. Anyway, you can change the border width using this on Quick CSS:
#header_main {
border: none;
}
#header_main .container {
border-bottom: 1px solid #e1e1e1;
}
This will remove the #header_main border then add a bottom border on #header_main container.
Best regards,
Ismael
The last edit already did the trick! Thanx!