Truly Minimal: Remove Lines & move text closer tp menu
-
I would like to remove the dotted lines from my Truly Minimal Theme and move all the embedded text closer to the menu.
I was wondering if anyone had the CSS code to make this happen.
My wordpress is aaronminnigin.net.
Many thanks
Aaron
The blog I need help with is: (visible only to logged in users)
-
Hey Aaron,
The dotted lines are background images in the different areas of the theme. The margin in the .site-header, is used to manage the space between the content and menu. Here is the CSS you will use to remove the background images and shorten margin of the header.
.site-header {background: none repeat scroll 0 0 transparent;margin: 0 0 0.9em;}
.hentry { background: none repeat scroll 0 0 transparent;}
.entry-meta {background: none repeat scroll 0 0 transparent;}
.site-footer {background: none repeat scroll 0 0 transparent;}
-
It appears my Text editor copied the line breaks. Here is the CSS without the line breaks, just in case:
.site-header {background: none repeat scroll 0 0 transparent;margin: 0 0 0.9em;}
.hentry { background: none repeat scroll 0 0 transparent;}
.entry-meta {background: none repeat scroll 0 0 transparent;}
.site-footer {background: none repeat scroll 0 0 transparent;}
-
Fingers crossed.. =)
.site-header {background: none repeat scroll 0 0 transparent;margin: 0 0 0.9em;}
.hentry { background: none repeat scroll 0 0 transparent;}
.entry-meta {background: none repeat scroll 0 0 transparent;}
.site-footer {background: none repeat scroll 0 0 transparent;} -
The code button is fairly basic, but I feel like it shouldn’t display extra “br” tags like that. It may not be something someone can do right away, but I’ll put in a request to see if we can get that reviewed.
- The topic ‘Truly Minimal: Remove Lines & move text closer tp menu’ is closed to new replies.