when the categories are clicked in the menu, it shows all of the posts...is there a way to put a line between them?
blog categories
6 posts from 4 voices-
Posted 6 months ago #
-
Hey ldaskal,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top.archive.category .post-entry { background-image: url('http://www.yyscene.com/wp-content/themes/eunoia/images/layout/dots_dark.png'); background-repeat: repeat-x; background-position: bottom center; margin-bottom: 45px; padding-bottom: 45px; }Regards,
Devin
Posted 6 months ago # -
cool, what would I add if I only wanted to do individual categories ie, currentevents?
Posted 6 months ago # -
In this case use following code:
#top.archive.category-4 .post-entry { background-image: url('http://www.yyscene.com/wp-content/themes/eunoia/images/layout/dots_dark.png'); background-repeat: repeat-x; background-position: bottom center; margin-bottom: 45px; padding-bottom: 45px; }and replace "4" with your category id. Eg if your category has the id 16 use following code:
#top.archive.category-16 .post-entry { background-image: url('http://www.yyscene.com/wp-content/themes/eunoia/images/layout/dots_dark.png'); background-repeat: repeat-x; background-position: bottom center; margin-bottom: 45px; padding-bottom: 45px; }Posted 6 months ago # -
tried that...didn't work - to be more specific on my home page, I wanted to place the line between the posts in the blog section.
Posted 6 months ago # -
Hi,
You can add this on your custom.css
.post-entry { border-bottom: 1px solid #8A8787; margin-bottom: 50px; }Regards,
IsmaelPosted 6 months ago #
Reply
You must log in to post.














