XF 1.2 Bold secondary links in sidebar

HenrikHansen

Well-known member
Which extra css code can I add, so that secondary content links are bold in sidebar, even though the setting for secondary content links in admin.php is not checked to be bold?

I do not not secondary content links to be bold everywhere on site, only in sidebar.

Thanks in advance:)
 
Which extra css code can I add, so that secondary content links are bold in sidebar, even though the setting for secondary content links in admin.php is not checked to be bold?

I do not not secondary content links to be bold everywhere on site, only in sidebar.

Thanks in advance:)
Are you referring to the links? If so this should work
Code:
.sidebar .secondaryContent a {
font-weight: bold;
}

If just all secondary content then I think this should work
Code:
.sidebar .secondaryContent  {
font-weight: bold;
}
 
Top Bottom