Tags in the entries

Nov 04, 2010 18:38

Hey, this is my first time posting here and my first time using a smooth sailing layout, usually I go for Flexible Squares because I know how to edit the CSS, but I really liked this layout.  But the one thing that I wish it had was the tags showing up in the entries...but since I've never worked with smooth sailing CSS I wouldn't know were to ( Read more... )

css, tags

Leave a comment

Comments 3

darkarmywolf November 4 2010, 19:56:10 UTC
This is the part you're looking for:

.entryMetadata { display: none; }

I'm using a Smooth Sailing layout at the moment, and if you look in mine, you'll see this instead (still pretty much the default settings):

/* Container for the Mood, music, tags, location */
.entryMetadata {
padding-left: 6px;
}

/* Unordered list that contains the words in the metadata */
.entryMetadata ul {
margin: 0px;
padding: 0px;
}

/* Each item in the unordered list above */
.entryMetadata li {
list-style: none;
display: inline;
padding-right: 10px;
}

/* The bold words in the metadata */
.entryMetadata-label {
font-weight: bold;
padding-right: 4px;
}

Sorry about the delete, don't have an edit button and forgot to copy part of the code.

Reply

docrock06 November 4 2010, 20:00:43 UTC
Thanks for the reply - that really helped :D

Reply

darkarmywolf November 4 2010, 20:02:26 UTC
You're welcome :)

Reply


Leave a comment

Up