Tweak

InsaneJournal

Tweak says, "Pants are for the weak."

Username: 
Password:    
Remember Me
  • Create Account
  • IJ Login
  • OpenID Login
Search by : 
  • View
    • Create Account
    • IJ Login
    • OpenID Login
  • Journal
    • Post
    • Edit Entries
    • Customize Journal
    • Comment Settings
    • Recent Comments
    • Manage Tags
  • Account
    • Manage Account
    • Viewing Options
    • Manage Profile
    • Manage Notifications
    • Manage Pictures
    • Manage Schools
    • Account Status
  • Friends
    • Edit Friends
    • Edit Custom Groups
    • Friends Filter
    • Nudge Friends
    • Invite
    • Create RSS Feed
  • Asylums
    • Post
    • Asylum Invitations
    • Manage Asylums
    • Create Asylum
  • Site
    • Support
    • Upgrade Account
    • FAQs
    • Search By Location
    • Search By Interest
    • Search Randomly

A loving heart is the truest wisdom. ([info]ex_dickens625) wrote in [info]rp_tutorials,
@ 2012-08-19 15:30:00

Previous Entry  Add to memories!  Tell a Friend!  Next Entry
Entry tags:question: html/css, question: layouts

Hi all, so awhile ago I posted this layout which has, when you check your friends page [info]journal in [info]community on the one line. What I'm asking is if there's a way to get them on two lines on the friends page such as

[info]journal
[info]community

Does that make sense?



(Read comments) - (Post a new comment)


[info]forsythia
2012-08-19 10:32 am UTC (link)
If I'm not mistaken, you're trying to make the section look like this image shows. To do that, you first need to locate the following section in your code:

.entry-userpic {display:none;
}


Replace it with the following:

.entry-userpic {
width: 104px !Important;
font-size: 10px !important;
text-align: center !important;
}


Now, to make it pretty! Add this to remove the images that indicate journals and communities (the little Tweak etc.):

.entry-userpic img[src="http://www.insanejournal.com/img/userinfo.gif"] {
display: none !important;
}

.entry-userpic img[src="http://www.insanejournal.com/img/community.gif"] {
display: none !important;
}

.entry-userpic img[src="http://www.insanejournal.com/img/syndicated.gif"] {
display: none !important;
}


And then, to remove the word 'in' (such as "[info]theladyunicorn in [info]rp_tutorials") while keeping the links visible, which imo makes the section look more balanced, add this:

.poster {
width: 100px !important;
font-size: 0pt !important;
}

.poster a, .poster a:link, .poster a:hover, .poster a:visited {
font-size: 10px !important;
}


Hope this helps, and that it makes sense. I'm half asleep. xD

(Reply to this) (Thread)


[info]ex_dickens625
2012-08-19 11:01 am UTC (link)
Thanks.! I'll give it a shot in the morning but it does make sense :)

(Reply to this) (Parent)


[info]ex_dickens625
2012-08-20 08:22 am UTC (link)
It works so thank you so much :D

(Reply to this) (Parent) (Thread)


[info]forsythia
2012-08-20 12:13 pm UTC (link)
Glad it works! You're welcome. :)

(Reply to this) (Parent)


[info]elsierenee
2012-08-20 03:55 pm UTC (link)
Hi there! [info]theladyunicorn was asking this to help me out, so I wanted to say thanks and that it worked! Also, for the 'to make it pretty' section, what if I wanted to change the little icon image instead of remove it? I like it there for the quick link to the user info, so I don't want to remove it entirely, but I definitely want it prettier.

(Reply to this) (Parent) (Thread)


[info]forsythia
2012-08-20 05:46 pm UTC (link)
You're welcome. :) And I totally know what you mean about quick access to the profiiles; I use replacement images instead of removing them on some of my journals as well. These codes should work, just replace IMAGE_URL in each one with the image you'd like to use. Be sure to remove the 'to make it pretty' section and replace with these.

This replaces the image for normal journals on the friends page.

.entry-userpic img[src="http://www.insanejournal.com/img/userinfo.gif"]
{width: 0; height: 0; padding: 15px 7px 0px 9px !important; background: url(IMAGE_URL) no-repeat top center !important; border: none !important;}


This replaces the image for communities on the friends page.

.entry-userpic img[src="http://www.insanejournal.com/img/community.gif"]
{width: 0; height: 0; padding: 15px 7px 0px 9px !important; background: url(IMAGE_URL) no-repeat top center !important; border: none !important;}


This replaces the image for rss feeds on the friends page.

.entry-userpic img[src="http://www.insanejournal.com/img/syndicated.gif"]
{width: 0; height: 0; padding: 15px 7px 0px 9px !important; background: url(IMAGE_URL) no-repeat top center !important; border: none !important;}


If you'd also like to replace the images elsewhere in the journal, namely entries, also add these codes.

For normal journal images.

.ljuser img[src="http://www.insanejournal.com/img/userinfo.gif"]
{width: 0; height: 0; padding: 15px 7px 0px 9px !important; background: url(IMAGE_URL) no-repeat top center !important; border: none !important;}


For community images.

.ljuser img[src="http://www.insanejournal.com/img/community.gif"]
{width: 0; height: 0; padding: 15px 7px 0px 9px !important; background: url(IMAGE_URL) no-repeat top center !important; border: none !important;}


For rss feed images.

.ljuser img[src="http://www.insanejournal.com/img/syndicated.gif"]
{width: 0; height: 0; padding: 15px 7px 0px 9px !important; background: url(IMAGE_URL) no-repeat top center !important; border: none !important;}

(Reply to this) (Parent) (Thread)


[info]elsierenee
2012-08-20 07:26 pm UTC (link)
Oooh I did it! And it looks so pretty! Thank you SO much for your help and the easy instructions :D

(Reply to this) (Parent)


(Read comments) -


Home | Site Map | Manage Account | TOS | Privacy | Support | FAQs