Name of journal:
la_petite_singeLayout Style: Flexible Squares; customized layout from
mintyappleBasic, Paid or Plus: Paid
Problem you are having: I'm trying to rearrange the links on the righthand side into a neat list (like, one per line); I'm trying to change the color of bolded font (especially when using a numbered list, if possible) and the userinfo/entry security
(
Read more... )
Comments 9
If you don't use Firebug, I definitely recommend using it. It'll show you when code like that changes, as Livejournal seems to like doing a lot ^^;
Reply
Reply
The ?v=1 works fine for me and everyone else whose asked for help, so that's definitely what you need :/ You're possibly not inserting it in all the correct places? IIRC there are two userinfo URLs you have to change.
Reply
Reply
Search in your CSS for this:
li.sbaritem {
margin: 0px 6px 0px 3px;
padding: 0px 0px 5px 0px;
list-style: none;
display: inline;
}
Delete the bold part.
colored bold font
Search for this:
b, s, u, i, strong, em {
color: #A0156A;
}
You can either delete the whole section or edit it separately, and put some lines after the piece of code above, e.g.:
b {color: #000}
s {color: #fff}
u {color: #aaa}
etc.
b = bold
s = strikeout
u = underline
i = italic
strong = usually bold
em = usually italic
#000=black
#fff=white
#aaa=grey
icons
Move/copy the whole tiny icons code section from the end at the start of your CSS, that should do the trick.
Good luck!
Ana
Reply
EDIT: And for some reason, the userinfo/community icons are working, but not the 'lock' security one. :P Sorry to be annoying, but I can't figure out why it's just that one!
Reply
B O D Y
{
margin-left: ;
background-color: #ffffff;
background-image: url('http://img404.imageshack.us/img404/3783/39483737.png');
background-repeat: repeat-x;
background-position: top center;
background-attachment:scroll;
text-align: left;
font-size: 8pt;
color: #404040;
font-family: "Trebuchet MS", sans-serif;
b {color: #A0156A}
s {color: #404040}
i {color: #404040}
u {color: #404040}
strong {color: #A0156A}
em {color: #A0156A}
}
That's a no go. The bold lines (in the quote above) have to go after a closing bracket. BTW: It could be necessary to complement the code line "strong {color: #A0156A}" like this: "strong {color: #A0156A !important ( ... )
Reply
.ljuser img[src="http://l-stat.livejournal.com/img/icon_protected.gif?v=1"] { width: 0px;
Delete at the line start ".ljuser", delete towards the end "?v=1". Do not delete anything else.
The problem is, that each part of a html site has it's own identification tag, ids and classes. So you have a lot of combination possibilities to adress a certain section (e.g. a large sidebar or just a word). And sometimes you get lost...
LJ community and journal links (including the small pics) have the class "ljuser", the protected entries do not.
That's it - Have a nice time!
Ana
Reply
Leave a comment