Fixing the Entry Title link format

Dec 13, 2008 20:21

If you're not using an Expressive/Mixit layout (Edit: or the default component layouts), chances are your entry titles no longer look quite right since Livejournal just changed the layouts to display entry titles as links.

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
  1. Go to the Custom CSS area
  2. Copy/paste the needed code in the "Custom Stylesheet" area, AFTER all the existing code.
  3. 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)
  4. 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
Note: Just delete the lines you don't need (such as font-family or font-size) if you only want to change one or two things.

# layouts, * guides

Previous post Next post
Up