View Full Version : Positioning And Cursors


browneyedtear
04-21-2004, 01:46 AM
i would love it if anyone could help me with positioning my journal boxes to the right more so that it fits right under the header.



and i would like to know if there was anyway to make a cursor with text. for example i want a cursor that has little faded out letters that read 'i hate you'




here are my livejournal overrides ..

LASTN_TALK_READLINK=><a href="%%urlread%%"<b> %%messagecount%% </b></a> |

LASTN_TALK_LINKS<=
<tr>
<td colspan="4" color="#666666" width="100%" bgcolor="%%color:black%%" class="comment" style="webdings" >
%%readlink%%<a href="%%urlpost%% "> Pull the trigger and the nightmare stops.
</td>
</tr>
<=LASTN_TALK_LINKS

GLOBAL_HEAD<=
<style type="text/css">
<!--
a:hover {
color: #666666;
text-transform: ;
text-decoration: ;
filter:glow(Color=#CC6699,Strength=5);
height: 0;
}
-->
</style>
<style type="text/css">
<!--
/* change these numbers, must add up to 95% or less*/
table {
width: 45%;
margin-left: 25%;right: 25%;
}
/* do NOT change these numbers */
table table {
width: 100%;
margin:0;
}
table table table {
width: 0;
}
-->
</style>
<style type="text/css">
}table { border: 2px solid #336666; }
table table { border: 1px solid #CC6699; } transparent
}
-->
</style>
<style type="text/css">
table, tr, td, .shadowed {filter: none ;}
</style>


<style type="text/css">
<!--
body {
background-color: #ffffff !important;
background-image: url(http://img18.photobucket.com/albums/v55/browneyedtear/7e78792f.jpg) !important;
background-repeat: fixed;
background-attachment: fixed;
background-position: left bottom;
}

div {
background-image: url(http://img18.photobucket.com/albums/v55/browneyedtear/59efab49.jpg) !important;
background-repeat: no-repeat;
background-position: top right;
padding-top: 300;
text-align: center;
}

div div { background: none; width: auto; height: auto; padding: 2; }
div table { width: 400; }
div table table { width: 100%; }
div table table table { width: auto; }
div table table table table { width: 100%; }
-->
</style>
<=GLOBAL_HEAD




thanks in advance.

Brooke

bourdelson
04-21-2004, 07:50 PM
I merged all of your style attributes under one set of <style> tags, because in some browsers, things won't show up right if there's a lot of 'em. Also, you were missing margin- in front of right for your tables, and that's why it wasn't working. [If you don't know what I mean, I bolded it for you. ^.^] Here's your new set of overrides.

LASTN_TALK_READLINK=><a href="%%urlread%%"<b> %%messagecount%% </b></a> |

LASTN_TALK_LINKS<=
<tr>
<td colspan="4" color="#666666" width="100%" bgcolor="%%color:black%%" class="comment" style="webdings" >
%%readlink%%<a href="%%urlpost%%"> Pull the trigger and the nightmare stops.</a>
</td>
</tr>
<=LASTN_TALK_LINKS

GLOBAL_HEAD<=
<style type="text/css">
<!--
a:hover {
color: #666666;
text-transform: ;
text-decoration: ;
filter:glow(Color=#CC6699 ,Strength=5);
height: 0;
}

/* change these numbers, must add up to 95% or less*/
table {
width: 45%;
margin-left: 25%;
[b]margin-right: 25%;
}
/* do NOT change these numbers */
table table {
width: 100%;
margin:0;
}
table table table {
width: 0;
}

}table { border: 2px solid #336666; }
table table { border: 1px solid #CC6699; } transparent
}

table, tr, td, .shadowed {filter: none ;}

body {
background-color: #ffffff !important;
background-image: url(http://img18.photobucket.com/albums/v55/browneyedtear/7e78792f.jpg) !important;
background-repeat: fixed;
background-attachment: fixed;
background-position: left bottom;
}

div {
background-image: url(http://img18.photobucket.com/albums/v55/browneyedtear/59efab49.jpg) !important;
background-repeat: no-repeat;
background-position: top right;
padding-top: 300;
text-align: center;
}

div div { background: none; width: auto; height: auto; padding: 2; }
div table { width: 400; }
div table table { width: 100%; }
div table table table { width: auto; }
div table table table table { width: 100%; }
-->
</style>
<=GLOBAL_HEAD

To make a cursor, you need a graphics program that will let you save in a .cur or .ani file. I think Lissa has a link to one on her site, but I'm not positive.

browneyedtear
04-21-2004, 10:14 PM
Thank You !!