Samstag, 7. März 2009

Multiply.Design - Changing Comments/Replies Boxes

http://multiplydesign.multiply.com/journal/item/64/
These are the selectors to change the properties of the replies on your page:

- Reply boxes (unread, odd is the alternate one):
.replybox, .replyboxodd {
%elements
}

- Reply boxes (read):
.replyboxread {
%elements
}

- Only the text in replies (maybe useful to change the font color):
.replybodytext {
%elements
}

- Only the time stamp in replies (does not include the username link):
.replyboxstamp {
%elements
}

- username in replies (inside replyboxstamp):
.replyboxstamp a, .replyboxstamp a:link, .replyboxstamp a:visited {
%elements
}

- Quoted text:
.quotet {
%elements
}

- username inside quoted text:
.quotea a, .quotea a:link, .quotea a:visited {
%elements
}

- Box where you type the text:
textarea {
%elements
}


If you want to change them only on your Guestbook at your main page, simpy add #home_guestbook before the selector, like this:
#home_guestbook textarea {
%elements
}

or if you want to change it in the Guestbook page (Your_Username.multiply.com/guestbook):
.guestbook textarea {
%elements
}


The most common %elements are (with examples of their values):
background: transparent none;
border-color: #CD5C5C;
border-style: solid;
border-width: 1px;
color: #B39260;
font-family: comic sans ms;
font-size: 12px;


So if you want to change only the text color of all replies on your page, you can use this code:
.replybodytext { color: navy; }

Or the background and text of the reply box found in your Guestbook:
#home_guestbook textarea {
background-color: pink;
color: white;
}

Keine Kommentare:

Kommentar veröffentlichen