![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
(OK, I fumbled this one and posted it to the wrong comm, so this time I'm double checking to make sure it goes to the right location)
My question is this: I would like to style replies and IP address notifications for
mag7wallpapers.
Using Firebug I discovered that span.de is what I needed to style. I followed the instructions used on this web page but the result wasn't exactly what I was hoping for. The notice now covers the Post comment, Preview and More options buttons, and I can't figure out how to separate the two.
I would also like to lower the Quote button next to Subject, or move it up - make that whole area neater, because the elements are all over the place - if it can be done. And also, have the notice expand to the width of the textarea.
(click to enlarge)

Help?
Original css:
Edited css:
(Fingers crossed!)
My question is this: I would like to style replies and IP address notifications for
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
Using Firebug I discovered that span.de is what I needed to style. I followed the instructions used on this web page but the result wasn't exactly what I was hoping for. The notice now covers the Post comment, Preview and More options buttons, and I can't figure out how to separate the two.
I would also like to lower the Quote button next to Subject, or move it up - make that whole area neater, because the elements are all over the place - if it can be done. And also, have the notice expand to the width of the textarea.
(click to enlarge)

Help?
Original css:
Edited css:
(Fingers crossed!)
Tags:
no subject
Date: 2010-12-30 10:02 pm (UTC)no subject
Date: 2010-12-30 10:09 pm (UTC)no subject
Date: 2010-12-30 10:22 pm (UTC)Edit: Yeah, actually, I do have it block displayed:
.de{display:block; padding: 4px; width: 98%; border: 1px solid #c3c0ba; margin-top: 1em!important;font-size: 80%;
background: #F3F5F2; color:#af230c;font-weight:bold; font-style:oblique;}
I've added so much code to the original layout I literally cannot recall all of it, but at least now that's cleared up. :)
no subject
Date: 2010-12-30 10:30 pm (UTC)And it looks pretty! I've always thought this should be more emphasized than it is.
(I've subscribed to CSS code BTW; I'm probably going to need it soon; I have a style I have no idea how to code...)
no subject
Date: 2010-12-30 10:40 pm (UTC)no subject
Date: 2010-12-30 10:45 pm (UTC)no subject
Date: 2010-12-30 11:27 pm (UTC)For instance, on LJ and DW, the CSS for our user icons is .ljuser, but there's also a span around them in many page views that you can style separately. In that case you would try something like span.ljuser {background: red}. If you just want to style the icon, then you'd leave off the span and write something like .ljuser {height: 13px}.
In other words (editing after realizing why this is confusing, and that my explanation was not terribly clear) in my example, .ljuser controls the user-icon image only, while span.ljuser can control the background for that image and the image itself, if you like. Hope that helps. :)
no subject
Date: 2010-12-30 10:35 pm (UTC)I seem to do that a lot lately. :)
I just replaced float with block, and you're right, it does look much better. I'll go read other replies now.