Under the hood you can customize Nooz as much as you want. However there is no current “user interface” for changing colors and spacing.
I would recommend you make adjustments to your CSS. Nooz adds many css classes to the HTML elements so that these elements can be styles accordingly.
Here are some style recommendations:
.nooz-datetime {
color: #e5e5e5;
display: block;
margin-bottom: 5px;
}
.nooz-item {
margin-bottom: 60px;
}
.nooz-list {
list-style:none;
margin:0;
padding:0;
}
.blog-post-title-wrapper .nooz-excerpt {
line-height: 1.4;
}
Thanks a lot for your help ! Now it looks a bit better 😉 Have a great week end
Love the plugin. Used the above code but I need to get the link/headline to a lighter color because the page has a dark background. Which CSS item would I add a color adjustment to?
you could try the following:
The following is specific the the headline:
.nooz-link a {
color: blue;
}
.nooz-link a:hover {
color: red;
}
You can make all nooz links a certain color:
.nooz-list-wrapper a {
color: blue;
}
.nooz-list-wrapper a:hover {
color: red;
}
Also be sure to check out the “Help” tab in WordPress, under the Nooz Settings menu, it will have all the info you need.