I’ll try to help. Make sure you check the correct css class is being used, additionally take a look at a CSS Reference for syntax guides.
https://developer.mozilla.org/en-US/docs/Web/CSS/Reference
Give the following a try:
.nooz-excerpt {
padding-top: 20px;
}
Hi @farinspaace,
Thank you so much for helping out and this css list. Once I figure out the spacing, I’ll go back to testing other attributes (bold, italic,..).
I’ve tried:
.nooz-excerpt {
padding-top: 20px;
}
and changed to 40px and 100px But as you can see on the image (screenshot here: https://i.imgur.com/J8E087F.png ), it doesn’t work for some reason. Mmm :/
From the screenshot, it looks like the style does apply some padding above the excerpt. What it seems you are after is some spacing in-between each item. Try:
.nooz-item {
margin-bottom: 40px;
}
I would also recommend that you take a look at the Nooz help section: Nooz > Settings .. Help (on the upper right corner of the Settings Page). Here you can see a birds-eye view of the available css class names and HTML structure.
-
This reply was modified 8 years, 7 months ago by
farinspace.
After looking at your screenshot a little closer, I’ve noticed the following:
1) CSS syntax does not allow for // comment style syntax, only /* comment */ may be used (this can be causing issues with your styles.
2) If you are using the theme customizer, confirm that your theme is using wp_head() function in the header somewhere, this function, just like wp_footer(), is where WordPress hooks into the theme.