Custom CSS

Posted by link2x101 on July 14, 2011, 6:26 p.m.

I love it. :D

body {
background: #444;
}

span {
color: #000;
text-shadow: #FFF 0px 0px 8px;
}

#blog_wrapper {
background: #000;
-moz-border-radius: 16px;
border-radius: 16px;
border: #222;
}

Yeah, it uses some CSS3-only things, but meh, it's still cool.

I want to change the color of comments, but thanks to a really confusing scheme, I can't do so very well.

(Did I short blog yet? XD)

Comments

Kaz 13 years, 4 months ago

Comments don't seem to have any class, so you can't style them via CSS. Looks like repeating the same inline style on every comment is preferred lol

link2x101 13 years, 4 months ago

I had them almost styled by using

div.middlecolumn div {
background: #000;
}
or something, but the tops and bottoms stayed an unwanted color.

Kaz 13 years, 4 months ago

You may be able to do:

.middlecontent .div .div

That should give you the entire comment. Two more divs will give both the comment area as well as the footer of each comment.

I'm facepalming so hard D=

sirxemic 13 years, 4 months ago

Kaz, I am disappointed in you. :)

Of course what you just suggested is the same as .middlecontent .div

what you probably wanted to suggest was something like .middlecontent > div > div

… unless some divs actually have a class called 'div'. I can't check this since I'm on my iPhone.

anthonyloprimo 13 years, 4 months ago

Disregard that. This is what happens when I only just start getting back into going to this site. I forget everything.

EVERYTHING.