Jump to content

S@m

Members
  • Posts

    299
  • Joined

  • Last visited

Posts posted by S@m

  1. I have no idea. In any job I have done personally, it has just "magically" worked :)Now at work, it doesn't. I'll have a systems guy check into it for me.Thank you for your suggestion, this was driving me nuts!

  2. To align the text:

    #banner-header{text-align:center}

    You could also do:

    #banner-header h1 {text-align:center;}

    Instead of creating another div. - Might help clean up your page a little.I would just put a big margin on the bottom of your banner to make it taller. You could also split the diference if you wanted the title in the middle.

    #banner{margin-bottom:20px;}

    - Just guessing at what div you are working with...

  3. So for ever I have just linked text to an mp3, and it will play in the browser. (With the nice QuickTime progress bar and such)But now, (at my workplace) I did that, and the browser (both IE and FF) will just "render" the audio vs. playing the audio. So if I click the link, I get a page full of jumbled text and no audio.Is there something I am missing here or what happened?

  4. #baixada06 {	background-color: #ccc;	color: #ccc;	border: 6px solid #666;	padding: 4px;	font-size: 11px;	}#baixada06 a {	background-color: #ccc;	color: #000;	border: 6px solid #666;	padding: 4px;	font-size: 11px;	}#baixada06 a:hover {	background-color: #ccc;	color: #000;	border: 6px solid #666;	padding: 4px;	font-size: 11px;	}

    You need to talk to the "a" :)This should work for you.

  5. I would just make your font to be the color of your background. -> In this case it would be #ccc.So.

    #baixada06 {	background-color: #ccc;	color: #ccc;	border: 6px solid #666;	padding: 4px;	font-size: 11px;	}#baixada06:hover {	background-color: #ccc;	color: #000;	border: 6px solid #666;	padding: 4px;	font-size: 11px;	}

    Hope that helps!

  6. Put this in your header:

    <!--[if IE]><link rel="stylesheet" type="text/css" media="all" href="/css/style_for_IE.css" /><![endif]-->

    Then in that style sheet have all of your settings for IE. That way everything will validate. Best advice is just trial and error for IE.

    List

    Must be because it's part of CSS level 2 revision 1, IE doesn't fully support level 2. :)
    But, if you want a lot of crap and spyware installed, IE fully supports that. :)
  7. Yeah, IE is a pile of crap. :)Have you tried conditional commenting? Put this in your header:

    <link rel="stylesheet" type="text/css" media="all" href="defaultstyle.css" /><!--[if IE]><link rel="stylesheet" type="text/css" media="all" href="styleforIE.css" /><![endif]-->

    That will give you 1 style sheet for IE and 1 for everyone else.

  8. I have seen in code where the above symbols are not just ® but the actual number code. I know ® is alt+0174 and etc. However, I still need to use the sup tag to move the symbols up. This makes my line spacing funky. If you can use the number code that makes the symbol AND moves it up, it won't mess with your spacing.Does anyone know where I can find these number codes (or know what I'm talking about) :)

×
×
  • Create New...