Jump to content

S@m

Members
  • Posts

    299
  • Joined

  • Last visited

Everything posted by S@m

  1. Validate your html and see what comes up.http://validator.w3.org/The background image is covering up your background color. If it's transparent, it's a waste. Get it out of there.just use background-color:#e2e2e2;
  2. I'm with aspnetguy, you must have a div or something that is covering up the background.sorry I forgot the "#" in there.You could try: body, html { font-family: 'trebuchet ms', times, serif; font-size: 11px; background-color: #e2e2e2;} What browser are you using?
  3. You need to change your colors to hex format. So instead ofcolor: silver;you need: body{ font-family: 'trebuchet ms', times, serif; font-size: 11px; background-color: e2e2e2;} Also, try to keep everything lower case. silver instead of Silver (for example).
  4. Well, depending on what div has the blue background, that's the one you will want to increase the margin on. That way it will push things down (or up) depending on what you want to do.Let me know if that works.
  5. S@m

    link to mp3

    Hey, thanks I really appreciate that.
  6. S@m

    link to mp3

    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!
  7. 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...
  8. S@m

    link to mp3

    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?
  9. Did you try a postion:relative;instead of absolute?
  10. S@m

    Vertical Align

    http://www.mezzoblue.com/tests/centered-css/
  11. Do you have an example of what you want to do?
  12. #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.
  13. 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!
  14. S@m

    Border Position?

    ...exactly what Chocolate570 said is what I would try.
  15. S@m

    Border Position?

    Do you have an example of what you are trying to do? I can't picture why you would want to do that.
  16. S@m

    Default Unit isn't px

    .whatever {padding:10px;} wont work?
  17. S@m

    Offset image in IE

    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.
  18. S@m

    Help...

    what is the page link so we can se what is going on?
  19. S@m

    List

    But, if you want a lot of crap and spyware installed, IE fully supports that.
  20. S@m

    TM and ® for HTML

    Awesome, thanks!I thought there was a way that would automaticlly do the <sup> without actually using the tags.Oh well.Thanks for your help!
  21. Well, by using the code I posted, you can make changes to whatever you want in the style sheet for IE and it won't effect any other browsers. It also allows you to keep your HTML validated.
  22. 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.
  23. 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)
  24. Here is a great site for some drop shaddow infoLINK
×
×
  • Create New...