Author |
Topic |
 Kaeten Hybrid Syndicate
|
Posted - 2009.02.10 23:34:00 - [ 1]
Edited by: Kaeten on 10/02/2009 23:33:51 fiddling with html on myspace. got one problem, I want to be able to make comments in the code so I know where everything is.
example:
<!-- headings text --> .whitetext12, .orangetext15 { color:000000; font-family:Courier New;
however when i put that in it comes out like this...
.. -->headings text--> .whitetext12, .orangetext15 { color:000000; font-family:Courier New;
can anyone help me out here? |
 Esamir |
Posted - 2009.02.11 10:21:00 - [ 2]
Comments in CSS are written like so:
/*headings text*/
try that instead |
 Esamir |
Posted - 2009.02.11 10:30:00 - [ 3]
Oh, you're missing a curly bracket on the end there, maybe its there in the html and you just didn't copy/paste it into your post. |
 Adel Sorra |
Posted - 2009.02.11 10:32:00 - [ 4]
100% to what Esamir said |
 KingsGambit Caldari Provisions |
Posted - 2009.02.11 11:58:00 - [ 5]
As Esamir said, comments in CSS begin /* and end */
/* This is commented out */
/* So is this paragraph */ |