Page 1 of 1

Help me please.

Posted: Tue Jun 20, 2006 9:10 pm
by Spillages
What is wrong with this? The cursor won't change.


Code: Select all

<STYLE>a, a.man, a:link, a:visited{font-family:verdana, arial, times new roman;color:00FF00; font-size:14pt; font-weight:normal; text-decoration:none; font-style:normal} a:active, a:hover{font-family:verdana, arial, times new roman;color:00FF00; font-size:16pt; font-weight:normal; text-decoration:none; font-style:normal;}td, table, tr, span, li, p, div, textarea, DIV {font-family:verdana, arial, times new roman;color:FF0000; font-weight:normal; font-decoration:none; font-style:normal;background-color:transparent} td, li, p, div, textarea {font-family:verdana, arial, times new roman;border-color:FF0000} table{border-color:0000FF}a.navbar{font-family:verdana, arial, times new roman;font-size:12pt; font-weight:normal} a.navbar:link{color:0000FF;} a.navbar:active{color:0000FF;} a.navbar:visited{color:0000FF;} a.navbar:hover{color:0000FF;}a.searchlinkSmall{font-family:verdana, arial, times new roman;font-size:8pt; text-decoration:none; font-weight:normal;} a.searchlinkSmall:link{color:} a.searchlinkSmall:active{color:} a.searchlinkSmall:visited{color:} a.searchlinkSmall:hover{color:}body{font-family:verdana, arial, times new roman;background-color:000000;background-image:url(); background-position:0%; background-repeat:repeat; background-attachment:fixed;}.nametext{font-family:verdana, arial, times new roman;font-size:14pt;color:00FF00; font-weight:none;}.blacktext10{font-family:verdana, arial, times new roman;font-size:10pt; color:0000FF; font-weight:normal;}.blacktext12{font-family:verdana, arial, times new roman;font-size:12pt; color:FF0000; font-weight:normal;}.btext, .itext, .text{font-family:verdana, arial, times new roman;font-size:14pt; color:FFFF00; font-weight:none;}.orangetext15{font-family:verdana, arial, times new roman;font-size:16pt; color:FFFF00; font-weight:none;}.lightbluetext8{font-family:verdana, arial, times new roman;font-size:12pt; color:FF0000; font-weight:none;}.tmz_imp{font-family:arial;color:FF0000;font-weight:bold}a img{border-color:; border-width:2px;border-style:solid;}a:hover img{border-color:; border-width:2px;border-style:solid;}body{scrollbar-arrow-color:FF0000;scrollbar-Track-Color:000000;scrollbar-Highlight-Color:FF0000;scrollbar-base-color:FF0000;scrollbar-Face-Color:000000;scrollbar-Shadow-Color:FF0000;scrollbar-DarkShadow-Color:FF0000
cursor: url(http://www.nortonproject.com/customcursors/PIMPCUP.cur);}
a {cursor: url(http://www.nortonproject.com/customcursors/PIMPCUP.ani);}
</STYLE>

Re: Help me please.

Posted: Wed Jun 21, 2006 3:18 am
by Torkess_theCommie
It helps when it's not jumbled all up.


Code: Select all

<STYLE>
a, a.man, a:link, a:visited
{font-family:verdana, arial, times new roman;
color:00FF00;
font-size:14pt;
font-weight:normal;
text-decoration:none;
font-style:normal}

a:active, a:hover
{font-family:verdana, arial, times new roman;
color:00FF00;
font-size:16pt;
font-weight:normal;
text-decoration:none;
font-style:normal;}

td, table, tr, span, li, p, div, textarea, DIV
{font-family:verdana, arial, times new roman;
color:FF0000;
font-weight:normal;
font-decoration:none;
font-style:normal;
background-color:transparent}

td, li, p, div, textarea
{font-family:verdana, arial, times new roman;
border-color:FF0000}

table
{border-color:0000FF}

a.navbar
{font-family:verdana, arial, times new roman;font-size:12pt; font-weight:normal}

a.navbar:link
{color:0000FF;}

a.navbar:active
{color:0000FF;}

a.navbar:visited
{color:0000FF;}

a.navbar:hover{color:0000FF;}

a.searchlinkSmall
{font-family:verdana, arial, times new roman;font-size:8pt; text-decoration:none;
font-weight:normal;}

a.searchlinkSmall:link{color:}

a.searchlinkSmall:active{color:}

a.searchlinkSmall:visited{color:}

a.searchlinkSmall:hover{color:}

body
{
font-family:verdana, arial, times new roman;
background-color:000000;
background-image:url();
background-position:0%;
background-repeat:repeat;
background-attachment:fixed;
}

.nametext
{font-family:verdana, arial, times new roman;
font-size:14pt;color:00FF00;
font-weight:none;}

.blacktext10
{font-family:verdana, arial, times new roman;font-size:10pt; color:0000FF;
 font-weight:normal;}

.blacktext12
{font-family:verdana, arial, times new roman;font-size:12pt; color:FF0000;
font-weight:normal;}

.btext, .itext, .text
{font-family:verdana, arial, times new roman;
font-size:14pt; color:FFFF00; font-weight:none;}

.orangetext15
{font-family:verdana, arial, times new roman;font-size:16pt; color:FFFF00;
font-weight:none;}

.lightbluetext8
{font-family:verdana, arial, times new roman;font-size:12pt; color:FF0000; font-weight:none;}

.tmz_imp{font-family:arial;color:FF0000;font-weight:bold}

a img{border-color:; border-width:2px;border-style:solid;}

a:hover img
{border-color:; border-width:2px;border-style:solid;}

body
{scrollbar-arrow-color:FF0000;
scrollbar-Track-Color:000000;
scrollbar-Highlight-Color:FF0000;
scrollbar-base-color:FF0000;
scrollbar-Face-Color:000000;
scrollbar-Shadow-Color:FF0000;
scrollbar-DarkShadow-Color:FF0000;

/* Your problem is this missing semi colon */

cursor: url(http://www.nortonproject.com/customcursors/PIMPCUP.cur);}

a
{cursor: url(http://www.nortonproject.com/customcursors/PIMPCUP.ani);}
</STYLE>


You forgot to add a semi colin after

scrollbar-DarkShadow-Color:FF0000

see it helps to not jumble your coding up :wink: , everything is more easily seen. There maybe more mistakes there.

EDIT: making things prettier here

Posted: Wed Jun 21, 2006 7:46 am
by Spillages
Stupid mistake and thanks for adding the organization too. The only thing I took time to organize was the part I had problems with.

Posted: Wed Jun 21, 2006 8:23 am
by Spillages

Code: Select all

<STYLE>
a, a.man, a:link, a:visited
{font-family:verdana, arial, times new roman;
color:00FF00;
font-size:14pt;
font-weight:normal;
text-decoration:none;
font-style:normal}

a:active, a:hover
{font-family:verdana, arial, times new roman;
color:00FF00;
font-size:16pt;
font-weight:normal;
text-decoration:none;
font-style:normal;}

td, table, tr, span, li, p, div, textarea, DIV
{font-family:verdana, arial, times new roman;
color:FF0000;
font-weight:normal;
font-decoration:none;
font-style:normal;
background-color:transparent}

td, li, p, div, textarea
{font-family:verdana, arial, times new roman;
border-color:FF0000}

table
{border-color:0000FF}

a.navbar
{font-family:verdana, arial, times new roman;font-size:12pt; font-weight:normal}

a.navbar:link
{color:0000FF;}

a.navbar:active
{color:0000FF;}

a.navbar:visited
{color:0000FF;}

a.navbar:hover{color:0000FF;}

a.searchlinkSmall
{font-family:verdana, arial, times new roman;font-size:8pt; text-decoration:none;
font-weight:normal;}

a.searchlinkSmall:link{color:}

a.searchlinkSmall:active{color:}

a.searchlinkSmall:visited{color:}

a.searchlinkSmall:hover{color:}

body
{
font-family:verdana, arial, times new roman;
background-color:000000;
background-image:url();
background-position:0%;
background-repeat:repeat;
background-attachment:fixed;
}

.nametext
{font-family:verdana, arial, times new roman;
font-size:14pt;color:00FF00;
font-weight:none;}

.blacktext10
{font-family:verdana, arial, times new roman;font-size:10pt; color:0000FF;
 font-weight:normal;}

.blacktext12
{font-family:verdana, arial, times new roman;font-size:12pt; color:FF0000;
font-weight:normal;}

.btext, .itext, .text
{font-family:verdana, arial, times new roman;
font-size:14pt; color:FFFF00; font-weight:none;}

.orangetext15
{font-family:verdana, arial, times new roman;font-size:16pt; color:FFFF00;
font-weight:none;}

.lightbluetext8
{font-family:verdana, arial, times new roman;font-size:12pt; color:FF0000; font-weight:none;}

.tmz_imp{font-family:arial;color:FF0000;font-weight:bold}

a img{border-color:; border-width:2px;border-style:solid;}

a:hover img
{border-color:; border-width:2px;border-style:solid;}

body
{scrollbar-arrow-color:FF0000;
scrollbar-Track-Color:000000;
scrollbar-Highlight-Color:FF0000;
scrollbar-base-color:FF0000;
scrollbar-Face-Color:000000;
scrollbar-Shadow-Color:FF0000;
scrollbar-DarkShadow-Color:FF0000;


cursor: url(http://www.nortonproject.com/customcursors/PIMPCUP.cur);}

a {cursor: url(http://www.nortonproject.com/customcursors/PIMPCUP.ani);}
</STYLE>



Everything is good except the cursor.

Posted: Thu Jun 22, 2006 1:08 am
by west
let me guess. It's for your myspace?

Posted: Thu Jun 22, 2006 1:34 am
by MrPenguin589
If it is for myspace, just use Thomas' Myspace Editor (look it up on google) if it's for anything else, then I have no idea what to do. I'm only into Javascript in my HTML work. Not quite to CSS yet... (That is what it's called, right?)

Posted: Thu Jun 22, 2006 7:26 am
by Spillages
Yeah MySpace but I hate using those editors.

Posted: Fri Jun 23, 2006 4:59 am
by Torkess_theCommie
pfft myspace....

lol, well I'm lazy so I never edit profile thingies, such as myspace, unless I have alot of time on my hands.

well that also explains the wierd CSS id and class thingies, so many of them.