Jump to content

lando

Members
  • Posts

    53
  • Joined

  • Last visited

    Never

Contact Methods

  • AIM
    CrtainShade0fGrn
  • MSN
  • Website URL
    http://www.ethixstudios.com/
  • ICQ
    8643928
  • Yahoo
    CrtainShade0fGrn

Profile Information

  • Gender
    Male
  • Location
    Missouri

lando's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Try using padding instead...it worked when I tested it.
  2. Do you have this up somewhere? I've ran into this a couple of times and there are a few fixes for it, it would help to see the code.
  3. Is there a specific issue you are having? You didn't mention any issues...
  4. I'm not seeing the issue in IE7, are you using IE6?
  5. I'll assume you are talking about this site? If so, on #main you need to remove position: absolute; and give it margin: 0 auto; When I did this it messed up some other elements within the site. This is being caused because you have assigned several elements position: absolute;, you will need to remove those.
  6. You could also use header() in PHP or something similar in other scripting languages.
  7. You need to add margin: 0 auto; to the #container element.
  8. You may not have properly closed a tag within the form. I'd check to verify that all tags are closed properly.
  9. True. If they select save-as it will save the image, if they select save link then it will download the .wav file. The other two methods I mentioned would be more fail proof.
  10. I provided two links in my post that will tell you exactly how to do it, depending on which method you feel more comfortable with.
  11. The way you have it setup now you would have to have them right click and select 'save-as'. If you want to force them to download it instead you could use a scripting language to set a header like PHP or use htaccess.
  12. lando

    Syntax Help

    Okay. To change the text color you will need to change the numbers (hexidecimal) after color: below. For example: #FFF or #FFFFFF is white, #000 or #00000 is black. Photoshop is a great tool for this, but there are hundreds of other tools on the internet to generate hexidecimal colors. tr.sub_nav td a, tr.sub_nav td a:visited { color: #FFF; font: bold 14px Verdana, Geneva, Arial, Helvetica, sans-serif; } tr.sub_nav td a:hover { color: #FF0000; background-color : #FFF; } tr.sub_nav td a:active { color: #237cc4; }
  13. lando

    Syntax Help

    Okay, well your question was how to make the background transparent without making the text transparent. What I gave you does that...you still need to adjust the color codes.
  14. lando

    Syntax Help

    tr.subnav td { background-color : #CCC; filter:alpha(opacity=1); /* IF IE because IE sucks, and everyone hates it! and I hate M$*/ -moz-opacity: .1; /* if older mozilla or not not CSS3 */ opacity: .1; /* if Newer browser */ }
  15. lando

    Syntax Help

    Good point wildteen88, I didn't even notice that he had a div nested inside a tr...which you can't do either. This is what it needs to look like: <tr class="subnav"> <td><a href="index.php"><b>Home</a></td> <td><a href="index.php?page_id=2">CONTACT US</a></td> <td><a href="index.php?page_id=49">GUESTBOOK</a></td> <td><a href="index.php?page_id=3">LINK TO US</a></td> <td><a href="index.php?page_id=5">NEWS/UPDATES</a></td> </tr> tr.sub_nav td a, tr.sub_nav td a:visited { color: #FFF; font: bold 14px Verdana, Geneva, Arial, Helvetica, sans-serif; } tr.sub_nav td a:hover { color: #FF0000; background-color : #FFF; } tr.sub_nav td a:active { color: #237cc4; } I am not extremely familiar with opacity and such. You might want to check out Quirksmode to see what limitations there are and the proper syntax.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.