remove dotted lines on blog
-
How can I remove the dotted lines between blog posts and between header and blog?
The blog I need help with is: (visible only to logged in users)
-
Hey there!
Since you have the Premium upgrade, you can adjust your theme’s CSS to hide those dotted lines.
If you’d like to give this a try, go to your customizer by clicking the link below:
https://petiteidylle.wordpress.com/wp-admin/customize.php?Then, click CSS in your menu. In the CSS Revisions box, please paste the following underneath all existing text:
.hentry {
background: none;
}.site-header {
background: none;
}.entry-meta {
background: none
}Then Save your changes. That should do the trick!
For more detailed instruction on how you can make CSS adjustments on your own, take a look at these two links:
https://dailypost.wordpress.com/2013/07/25/css-selectors/Thanks so much!
-
Hi Robyn,
thanks a mill! It worked :)
I’ve left some of the lines but removed the ones that didn’t really make sense.
Would you know how I can decrease the gap between the menu and the first blog poste?
Thank you very much for your help. Really appreciate it.
Nicolette -
Hey Nicolette!
Glad that worked for you :)
To tighten up the spacing, add the following CSS code beneath the code you’ve already added:
.site-header {
margin: 0 0 1em;
}.hentry {
margin: 0 0 1em;
}Make sure to save your changes!
Let me know how that works out for you. Thanks!
-
-
- The topic ‘remove dotted lines on blog’ is closed to new replies.