Ok thanks
Is there a way to add the line and space under article titles everywhere?
http://www.demo-website.co.za/general/You will notice that the Article title are clickable and there is a line and space under it.
http://www.demo-website.co.za/general/business/The article title is no longer clickable and the line and space under it also disappeared.
I added the
AFTER the so if the title is clickable it is ok, but if not, the format will also not be changed. I cannot figure out where to place the formating code for non-clickable article titles and would appreciate some help please.
This is a CSS styling issue.
The space and line under the title... when it is an active link... is a styling issue. In your css stylesheet, the appearance of all links in your site will be controlled by the style declarations for
a which... in the default sNews 1.6 Minimal Template (style.css file) is:
a { color: #E23300; background: inherit; }
... and the above will automatically apply the underline to all links. You can remove that auto-generated line by adding the following to the styling:
a { color: #E23300; background: inherit; text-decoration: none; }
With this line removed, you can then modify the styling applied to all the article titles:
h2 { border-bottom: 1px solid #eee; margin: 0 0 10px; padding: 0 0 3px; }
Notice that it has a solid
border-bottom of 1px and it is #eee in color. If this is fine with you, leave it as it is. If not, you can change it.