truly minimal dotted line removal
-
how do i remove the dotted lines on my blog. i want the space around the text to be truly minimal
The blog I need help with is: (visible only to logged in users)
-
Add this to your custom css.
.site-header, .hentry, .entry-meta, .site-footer, .widget, .site-main { background: none; } -
I’ve added you css and it worked a treat. Thank you! Can you also advise how to decrease the amount of white space around the header?
-
You can remove the padding from the main site header element in the Truly Minimal them using this custom CSS:
.site-header { padding: 0; }There’s still a little spacing left above the site title and below the main menu, and you can also remove that spacing using this CSS:
.site-title, .site-title a { margin-top: 0; } .navigation-main { margin: 0; }You can also experiment with adding back a little of the space if the examples above take away too much of it.
-
- The topic ‘truly minimal dotted line removal’ is closed to new replies.