Specifically on my friends page, is there something I can do so that entries will not wrap around and beneath the icons? It looks kind of wonky, and is pretty annoying...
The icon was floated to the left, it is kinda annoying for posts with images, lists, and blockquotes.
There are two alternative solution, but first: (1) Go to this URL: http://www.livejournal.com/customize/options.bml (2) Find the Custom CSS link (3) Find the bigger box at the bottom of the page, and copy-paste one of the solutions below (only the ones colored pink) (4) Hit 'Save Changes' button.
You may select one of these solutions (1) float them to the right.
div.user-icon { float: right; }(2) do exactly like you want them to be
Comments 1
There are two alternative solution, but first:
(1) Go to this URL: http://www.livejournal.com/customize/options.bml
(2) Find the Custom CSS link
(3) Find the bigger box at the bottom of the page, and copy-paste one of the solutions below (only the ones colored pink)
(4) Hit 'Save Changes' button.
You may select one of these solutions
(1) float them to the right.
div.user-icon
{
float: right;
}(2) do exactly like you want them to be
div.asset-body, div.lj-currents, div.asset-tags, div.asset-meta
{
width: 450px;
position: relative;
float: right;
clear: right;
overflow: hidden;
}
div.user-icon
{
position: absolute;
left: -120px;
}
Reply
Leave a comment