Remove Border in CSS
-
Hello!
I have the penscratch theme and want to get rid of the borders. If anyone could help me with the CSS code for that, that would be really great!
Thank you :)
The blog I need help with is: (visible only to logged in users)
-
Hi there, since you didn’t specify which borders, I’ll assume you want to get rid of all of them. This first CSS rule will get rid of the lines in the navigation/header area and in the footer.
.site-header, .main-navigation, .site-footer { border: none; }This rule will get rid of the lines in the widgets in the sidebar with the exception of the lines in the Twitter Timeline Widget. That code comes from Twitter, so it is not something we can override with CSS.
.widget { border: none; } .widget li { border: none; }
- The topic ‘Remove Border in CSS’ is closed to new replies.