User icons, Prev/Next and more - SOLVED

Sep 15, 2009 14:30

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... )

lj icons:userinfo, misc, entries:background

Leave a comment

Comments 4

(The comment has been removed)

faechan September 15 2009, 20:12:50 UTC
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?)

Reply

(The comment has been removed)

faechan September 16 2009, 00:07:16 UTC
2) Thank you so much, it worked perfectly!

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


babyelefant September 16 2009, 13:42:57 UTC
3)
.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

faechan September 16 2009, 16:46:34 UTC
Worked fine! Thank you so much :)

Reply


Leave a comment

Up