xaea (
xaea) wrote in
style_system2010-12-10 01:24 pm
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
Entry tags:
rawr!!
i have a new theme/layout all set to go with header image, entry bg image, and main bg image. i just spent half an hour trying to find a dw theme that works with the header image and i finally found one i liked but i can't remove .userpic!!!
do any of you recommend one base layout over another when it comes to using header images??
do any of you recommend one base layout over another when it comes to using header images??
no subject
You can remove it by CSS through .userpic {display: none;} in custom CSS.
If you want to edit layers so it doesn't even print out, I could tell you want to change, too.
Do you only want it to show on reading pages?
no subject
basically, all i wanted to do was remove it from the recent entries page. that is what .userpic {display: none;} will do, correct?
thank you so much for your help! :)
no subject
And yes, that will remove .userpics from well, pretty much anything, so I recommend:
.entry-wrapper .userpics { display: none; }
If you want to remove it from all entries in your style.
For specific pages, here is removing it from your recent entries:
.page-recent .entry-wrapper .userpics { display: none; }
And here is removing it from your reading and network pages:
.page-read .entry-wrapper .userpics, .page-network .entry-wrapper .userpics { display: none; }
That will keep the userpic there on entry pages, though, and for comments.
no subject
no subject
i am trying to change the width of my WHOLE layout. but so far, i can only figure out how to change the entries section by using
.one-column #primary {left: 10%; width: 70%;}
i have looked and looked at this style sheet and i can't for the life of me figure out how to change the header section's width! x_x
no subject
#primary, #header, #secondary { margin-left: 10%; width: 70%; }
(The #secondary is there in case you even want to add modules to the bottom)
no subject
no subject
.one-column #primary {border: 0.083em solid #dddddd; background: #f5f5f5; width: 70%; padding: 0; border-top: 0; position: absolute; }
.one-column #header { width: 70%;}
no subject