Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
meh.... badly need help... i getting very anouyed...
Old 04-11-2005, 01:54 PM meh.... badly need help... i getting very anouyed...
-_darkranger_-'s Avatar
Super Talker

Posts: 122
Location: bolton...
Trades: 0
my css code works on ie but not firefox and some others... this is my css code....

Code:
body 
{font-size:10pt; font-family: gigi; scrollbar-face-color:000099; scrollbarr-highlight-color:0000CC; scrollbar-3dlight-color:0000FF; scrollbar-shadow-color:000066; scrollbar-darkshadow-color:000033; scrollbar-arrow-color:CC0000; scrollbar-track-color:000000; background-image: url("http://users.rcn.com/darxus/images/gothic-angel.jpg"); background-attachment:FIXED; background-position:center; background-repeat:NO REPEAT; cursor: url(http://www.annebras.nl/Goth/Cursors/Evil.cur);}

u {float:left; width:0.7em; font-size:400%; font-family:algerian,courier; line-height:80%;}

B {text-transform: uppercase; COLOR: #000000; font-weight:bold; font-family: Monotype Corsiva; font-size: 17; Filter: glow( color= DarkRed, strength=6, ); height:1px;}

I {text-transform: uppercase; COLOR: Crimson; font-weight:italic; font-family: modern; font-decoration: underline; font-size: 25; Filter: glow( color= blue, strength=6, ); height:1px;} 

p {align=justify} 

table, td{font-family:gigi; font-size: 10pt; text-decoration:none; border-collapse: collapse;} 

img{border:2px dashed red; border:none; filter:alpha (opacity=100, finishopacity=20,style=3);} a:link, a:visited{color:#ff0000;} a:hover{color:#ffffff;} a.nav:link, a.nav:visited{width:100%; color:#bbbbbb; text-decoration:none;} 

a.nav:hover{background: url("http://i2.photobucket.com/albums/y25/-_darkranger_-/1.gif"); border: none; color: #ffffff; width:100%;} 

A {cursor: url(http://www.annebras.nl/Goth/Cursors/More/13.cur);} 

.navhead{font-size:13pt; font-family: Monotype Corsiva; color: #000000; font-weight:bold; text-align:center; background: url("http://i2.photobucket.com/albums/y25/-_darkranger_-/2.jpg");}

.navbox{background: url("http://i2.photobucket.com/albums/y25/-_darkranger_-/2cecd5e6.gif"); border: 1 dashed red; font-size:12pt; font-family: Monotype Corsiva;}

.title{width:"100%"; text-align:center; font-family:verdana; font-weight:none; font-size:12pt; padding:3; margin-bottom:3; background: url("http://i2.photobucket.com/albums/y25/-_darkranger_-/3.jpg");}

.user_title{text-align:center; font-family:verdana; font-weight:bold; font-size:0pt; background: url("http://i2.photobucket.com/albums/y25/-_darkranger_-/title1.gif"); padding:3; margin-bottom:3; filter:alpha (opacity=100, finishopacity=60,style=3); height: 60; width: 400; color: #000000;}

#navbox, #navbox td{border:1px solid aa0000; font-size:10pt; font-family:gigi;}#borderless{border:0;}#comments, #comments td{border:1px solid #ff0000;}#rating_box, #rating_box td{border:1px solid #ff0000;}

#mininav{background: url("http://i2.photobucket.com/albums/y25/-_darkranger_-/3.jpg"); color: #ffffff; border: 1 dashed red;}

input, select, textarea{color: #dddddd; background-color:550000; border:1px solid red; font-family: verdana; font-weight: bold; font-size:10px;}

input{background: url("http://i2.photobucket.com/albums/y25/-_darkranger_-/2.jpg"); border: none; color: #000000;}

.content{text-align:right; margin: 0px; margin-bottom: 0px; padding: 5px; border-left: 0; border-top: 0; border-right:  1 outset #ff5555; border-bottom: 1 outset #ff0000; line-height: 150%;} 

hr{color: ff0000;;} 

table, td { background-color:transparent; border:none; border-width:0;} a:hover img {Filter: Blur(Add = 0, Direction = 225, Strength = 10)}



please please help...

xx
-_darkranger_- is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 04-11-2005, 03:39 PM
Jared's Avatar
Skilled Talker

Posts: 52
Location: St. Anthony, ID
Trades: 0
You could try something like this:

<table width="desired width" border=0 cellpadding=0>
<tr>
<td><img src="source"></img></td>
</tr>
<tr>
<td><img src="source"></img></td>
</tr>
</table>

Just remember that <tr> defines a row and <td> sets columns within that row. They must also be ended </tr> </td>.

The way I do it is to go row by row, setting the column data as I go. It's easier to manage too.

HTH.
Jared is offline
Reply With Quote
View Public Profile Visit Jared's homepage!
 
Old 04-11-2005, 03:51 PM
brokensoul2271's Avatar
- - - - - - - - -

Posts: 750
Location: Lancashire, UK
Trades: 0
What is it your trying to do?
__________________
Yes, indeed...

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
brokensoul2271 is offline
Reply With Quote
View Public Profile Visit brokensoul2271's homepage!
 
Old 04-11-2005, 04:26 PM
-_darkranger_-'s Avatar
Super Talker

Posts: 122
Location: bolton...
Trades: 0
Quote:
Originally Posted by Jared
You could try something like this:

<table width="desired width" border=0 cellpadding=0>
<tr>
<td><img src="source"></img></td>
</tr>
<tr>
<td><img src="source"></img></td>
</tr>
</table>

Just remember that <tr> defines a row and <td> sets columns within that row. They must also be ended </tr> </td>.

The way I do it is to go row by row, setting the column data as I go. It's easier to manage too.

HTH.
what the ****?!? its css code not a table code
-_darkranger_- is offline
Reply With Quote
View Public Profile
 
Old 04-11-2005, 04:27 PM
-_darkranger_-'s Avatar
Super Talker

Posts: 122
Location: bolton...
Trades: 0
Quote:
Originally Posted by brokensoul2271
What is it your trying to do?
im trying 2 make my code work in firefox
-_darkranger_- is offline
Reply With Quote
View Public Profile
 
Old 04-11-2005, 04:31 PM
0beron's Avatar
Defies a Status

Posts: 1,832
Location: Somewhere else entirely
Trades: 0
What bit of it doesn't work? Are there gaps on the page? Elements too big? Wrong colours / invisible parts, what?
__________________
UPDATE 0beron SET talkupation = talkupation + lots WHERE post = 'helpful';

Please login or register to view this content. Registration is FREE
(aka MSN handwriting for forums)
0beron is offline
Reply With Quote
View Public Profile Visit 0beron's homepage!
 
Old 04-11-2005, 04:33 PM
-_darkranger_-'s Avatar
Super Talker

Posts: 122
Location: bolton...
Trades: 0
hmmmm the backgrounds dont show... the coursor doesnt work... thats all i think hmmm ill have a look later
-_darkranger_- is offline
Reply With Quote
View Public Profile
 
Old 04-11-2005, 04:33 PM
Jared's Avatar
Skilled Talker

Posts: 52
Location: St. Anthony, ID
Trades: 0
I am retarded. I'm not sure exactly how I did it, but I posted on the wrong thread. Sorry!

That should probably solve it for you darkranger
Jared is offline
Reply With Quote
View Public Profile Visit Jared's homepage!
 
Old 04-11-2005, 04:34 PM
-_darkranger_-'s Avatar
Super Talker

Posts: 122
Location: bolton...
Trades: 0
o and the < b > < i > < u > tags
-_darkranger_- is offline
Reply With Quote
View Public Profile
 
Old 04-11-2005, 04:57 PM
CasaPages's Avatar
SillyPhilly

Posts: 758
Location: between here an somewhere else
Trades: 0
Ok well your CSS is loaded with errors and the reason it works in IE is probbaly becasue IE is not a compliant browser unlike firefox and "some others".......

I suggest you use the W3C CSS Validator

when I ran the code thru the validation service I got the following errors




Quote:


  • Line: 2 Context : body Property scrollbar-face-color doesn't exist : 99
  • Line: 2 Context : body Unknown dimension : 0000CC
  • Line: 2 Context : body Unknown dimension : 0000FF
  • Line: 2 Context : body Property scrollbar-shadow-color doesn't exist : 66
  • Line: 2 Context : body Property scrollbar-darkshadow-color doesn't exist : 33
  • Line: 2 Context : body Property scrollbar-arrow-color doesn't exist : CC0000
  • Line: 2 Context : body Property scrollbar-track-color doesn't exist : 0
  • Line: 2 Context : body Invalid number : background-repeat NO is not a background-repeat value : NO REPEAT
  • Line: 2 Context : body Invalid number : cursor Missing comma separator. : url(http://www.annebras.nl/Goth/Cursors/Evil.cur)
  • Line: 6 Context : B Invalid number : font-size only 0 can be a length. You must put an unit after your number : 17
  • Line: 6 Context : B Parse Error - color= DarkRed, strength=6, )
  • Line: 8 Context : I Crimson is not a color value : Crimson
  • Line: 8 Context : I Invalid number : font-weight italic is not a font-weight value : italic
  • Line: 8 Context : I Property font-decoration doesn't exist : underline
  • Line: 8 Context : I Invalid number : font-size only 0 can be a length. You must put an unit after your number : 25
  • Line: 8 Context : I Parse Error - color= blue, strength=6, )
  • Line: 10 Context : p Parse Error - align=justify
  • Line: 14 Context : img Parse Error - (opacity=100, finishopacity=20,style=3);
  • Line: 14 Context : img Parse error - Unrecognized : ;}
  • Line: 18 Context : A Invalid number : cursor Missing comma separator. : url(http://www.annebras.nl/Goth/Cursors/More/13.cur)
  • Line: 22 Context : .navbox Invalid number : border 1 is not a border value : 1 dashed red
  • Line: 24 Context : .title Invalid number : width "100%" is not a width value : "100%"
  • Line: 24 Context : .title Invalid number : font-weight none is not a font-weight value : none
  • Line: 24 Context : .title Invalid number : padding only 0 can be a length. You must put an unit after your number : 3
  • Line: 24 Context : .title Invalid number : margin-bottom only 0 can be a length. You must put an unit after your number : 3
  • Line: 26 Context : .user_title Invalid number : padding only 0 can be a length. You must put an unit after your number : 3
  • Line: 26 Context : .user_title Invalid number : margin-bottom only 0 can be a length. You must put an unit after your number : 3
  • Line: 26 Context : .user_title Parse Error - (opacity=100, finishopacity=60,style=3);
  • Line: 28 Context : #navbox td Parse Error - : 60; width: 400; color: #000000;} #navbox
  • Line: 30 Context : #mininav Invalid number : border 1 is not a border value : 1 dashed red
  • Line: 32 Context : input , select , textarea Invalid number : background-color 550000 is not a background-color value : 550000
  • Line: 38 Context : hr Invalid number : color ff0000 is not a color value : ff0000
  • Line: 40 Context : a:hover img Parse Error - = 0, Direction = 225, Strength = 10)







  • as you can see you have plenty of errors
I also recomend going to www.w3cshools.com and checking out some of their tutorials...they are extremely helpfull...
__________________
It Happens

Please login or register to view this content. Registration is FREE

Last edited by CasaPages; 04-11-2005 at 05:01 PM..
CasaPages is offline
Reply With Quote
View Public Profile Visit CasaPages's homepage!
 
Reply     « Reply to meh.... badly need help... i getting very anouyed...
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.51482 seconds with 12 queries