Hi :) I never used Expressive before, so I'm quite confused. I want to use this layout on a new community, right now I'm trying it on faesandbox. I edited just minor things, like the subject size and some spacing here and there
( Read more... )
2) Here. I know it can barely be seen, I guess it depends on your screen brightness?
3) Um, I don't want to hide the header navigation (like entries, archive, friends and so on), just the little 'prev/next' square/s right under that. Or I didn't get what you meant, maybe :o
Maybe it could be covered, somehow? Like, having the entries and the sidebar go over it? I know it's very unprofessional and I'm really a beginner, so maybe I'm saying nonsense :D (Also, just in case, what should I delete to get rid of both?)
No ideas about #1? :\ I don't get it, looks like the tiny icon padding is different for the username under the icon, but I don't know how to adjust it. Is there a specific class?
.ljuser img { width: 0; height: 0; background-repeat: no-repeat; background-color:transparent; /* so that IE users will still see an image */ background-image: url(http://img510.imageshack.us/img510/5078/userur7.gif); padding: 13px 10px 0 12px; }
to:
.ljuser img { width: 0; height: 0; background-repeat: no-repeat; background-color:transparent; /* so that IE users will still see an image */ background-image: url(http://img510.imageshack.us/img510/5078/userur7.gif); padding: 13px 0px 0 12px !important; }
and remove the line under it (../Pretty%20It%20Up%20Part%20V%20green/stylegreen.css )
Comments 4
(The comment has been removed)
3) Um, I don't want to hide the header navigation (like entries, archive, friends and so on), just the little 'prev/next' square/s right under that. Or I didn't get what you meant, maybe :o
Maybe it could be covered, somehow? Like, having the entries and the sidebar go over it? I know it's very unprofessional and I'm really a beginner, so maybe I'm saying nonsense :D (Also, just in case, what should I delete to get rid of both?)
Reply
(The comment has been removed)
3) I'll try :) Thanks!
No ideas about #1? :\ I don't get it, looks like the tiny icon padding is different for the username under the icon, but I don't know how to adjust it. Is there a specific class?
Reply
.stream-header{
display:none;
}
will hide just the top prev/next links
1) the problem is caused by the padding here:
.user-icon img {
padding:5px;
border:1px solid #e0e0e0;
}
to fix it change:
.ljuser img {
width: 0;
height: 0;
background-repeat: no-repeat;
background-color:transparent;
/* so that IE users will still see an image */
background-image: url(http://img510.imageshack.us/img510/5078/userur7.gif);
padding: 13px 10px 0 12px;
}
to:
.ljuser img {
width: 0;
height: 0;
background-repeat: no-repeat;
background-color:transparent;
/* so that IE users will still see an image */
background-image: url(http://img510.imageshack.us/img510/5078/userur7.gif);
padding: 13px 0px 0 12px !important;
}
and remove the line under it (../Pretty%20It%20Up%20Part%20V%20green/stylegreen.css )
Reply
Reply
Leave a comment