Penscratch Theme: line between posts
-
This if for my blog: https://johnfrancisnooney.com
On the blog home page, each post is separated by a light-gray line. Is there a way to make that line darker and more prominent? Or even a different color?
Thanks
The blog I need help with is: (visible only to logged in users)
-
Hi
To change the color of your posts, you’ll want to add the following code to your Custom CSS editor. In order to edit the CSS, you will need to have the premium or business level WordPress.com account.
The code below will make the link black. If you want to choose a different color, you can adjust the HEX color value (the # followed by 6 letters/numbers). Here’s a link that can provide many different HEX color values: http://www.quackit.com/css/css_color_codes.cfm
If you’d like to make the line thicker, you can increase the 1 in the 1px section to a larger number.
The border-bottom CSS property also has a few different styles to it. You can change the word solid to dashed, dotted, or a number of other options. See http://www.w3schools.com/css/css_border.asp to learn more about the different border properties.
.hentry { border-bottom: 1px solid #000000; }Hope this helps!
-
Thank you so very much for your help on this (and on my other post/question).
I really appreciate your time and you help.
Thanks!
- The topic ‘Penscratch Theme: line between posts’ is closed to new replies.