Jump to content

AliciaHarper

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by AliciaHarper

  1. Make sure you have that option turned on in your browser. If its not enabled it might not work. If you coding in HTML the alt tag should aways be visible - when you mouse over.
  2. I am totally in agreement with Skemcin.You don't need to know PHP and Mysql.It does depend on what area or what your focus is. Personally I am a designer. I design mock ups, the graphic side and code some HTML and PHP. But I am extremely good at HTMl and CSS but like I said I am more of a designer. Which is fine.As more of a designer - I have a couple of options. One is to work with a bigger company who has a complete development team. Or to do many small business websites. And I do both. I have a company which I am employ a dev. team, which enables me to work on the look and feel of websites more. I can either stick to creating HTML and CSS based websites or when we are creating a huge database driven websites - I work with my team. I also am deeply involved in SEO for the smaller business.Good Luck on being a designer
  3. For this you would use:CSS:#navlist { font-family:Arial, Helvetica, sans-serif; font-size:.8em; font-weight:bold; list-style:none;}#navlist a { display:block; width:135px; color:#fff; text-decoration:none; background:url("images/tab.gif") no-repeat; padding:7px 10px 6px 10px;}#navlist a:hover { background-position:0 -29px; color: #1e5ebd;}#navlist a:active { background-position:0 -58px; color:#1e5ebd;}And HTML:<ul id="navlist"> <li><a href="#">Menu Item 1</a></li> <li><a href="#">Menu Item 2</a></li> <li><a href="#">Menu Item 3</a></li> <li><a href="#">Menu Item 4</a></li></ul>Or you could use the javascript rollover effect:An example:< a href="link.html onmouseover="document.rollover.src='mouseoverimg.gif'"onmouseout="document.rollover.src='img.jpg"><img src="img.jpg" name="rollover" /></a>Good Luck!
  4. Or you could simply write<table cellpadding="0" align="center" cellspacing="0" border="0">As you are using tables to design anyhow and it is easier if you are using Dreamweaver just to click on the table and then look in the properties menu and select center.Good Luck
  5. It's not showing up right because you have CSS errors.Here are the errors:Error: Invalid color value.scrollbar-face-color:4F4F4FError: Property scrollbar-face-color not recognized.scrollbar-highlight-color:4F4F4FError: Property scrollbar-highlight-color not recognized.scrollbar-3dlight-color:4F4F4FError: Property scrollbar-3dlight-color not recognized.scrollbar-shadow-color:4F4F4FError: Property scrollbar-shadow-color not recognized.scrollbar-darkshadow-color:4F4F4FError: Property scrollbar-darkshadow-color not recognized.scrollbar-arrow-color:CDCDCDError: Property scrollbar-arrow-color not recognized.scrollbar-track-color:4F4F4FError: Property scrollbar-track-color not recognized.color: cdcdcdError: Invalid color value.And Firefox is complaint. You should always check your CSS first - fix error and then check it again.Try that.
×
×
  • Create New...