This applies to my shared layouts too. So here's the CSS override needed to change the title link format in the layouts.
Bloggish
.entry h3.entry-header a {
color: #Y !important;
font-size: # !important;
font-family: % !important;
text-decoration: none !important;
font-weight: bold !important;
}
Classic
.subject a {
color: #Y !important;
font-size: # !important;
font-family: % !important;
text-decoration: none !important;
font-weight: bold !important;
}
Component
.entryHeader a {
color: #Y !important;
font-size: # !important;
font-family: % !important;
text-decoration: none !important;
font-weight: bold !important;
}
Dear Diary
.entryheader h3 a {
color: #Y !important;
font-size: # !important;
font-family: % !important;
text-decoration: none !important;
font-weight: bold !important;
}
Flexible Squares
.subject a {
color: #Y !important;
font-size: # !important;
font-family: % !important;
text-decoration: none !important;
font-weight: bold !important;
}
Smooth Sailing
.entryHeaderSubject a {
color: #Y !important;
font-size: # !important;
font-family: % !important;
text-decoration: none !important;
font-weight: bold !important;
}
Instructions
- Go to the Custom CSS area
- Copy/paste the needed code in the "Custom Stylesheet" area, AFTER all the existing code.
- In the code pasted, replace:
Y with your color code
# for font size (remember to add pt or px or % or em after the number)
% with the font name(s) - If you don't want the title in bold, change the 'bold' for font-weight to normal. And if you want the title underlined, for text-decoration change 'none' to underline