|
| www.kdwebpagedesign.com |
|
BASIC HTML ::
Welcome
Introduction to HTML What is an URL? Browser Safe Fonts Photo Size and Compression Formatting Your Text Paragraphs, Linebreaks, Rules The Marquee Tag Adding Images Adding Text and Image Links Making Lists Tables: Basics Tables: Backgrounds and Color Tables: Colspan and Rowspan Tables: Practical Samples BASIC CSS ::
Introduction to CSS
Adding Backgrounds and Color The <div> and <span> Tags Formatting Your Text/CSS Making Lists/CSS Image Borders/CSS Hyperlinks/CSS Tables/CSS Fun with CSS USER Tools ::
Custom Auction Listing Creator: 1
Custom Auction Listing Creator: 2 Choosing Your Colors Mix-and-Match Backgrounds JavaScript Tricks ::
Other Information ::
eBay Related Questions
Customizing Your eBay Store Hosting Your Own Photos on eBay Using Irfanview to Crop Photos What Does That Term Mean? Donations ::
Do you find our Tutorials helpful? Are the free Auction Templates helping your sales? Donations of any amount are appreciated to help keep this site up and running!
|
![]() |
Hyperlinks/CSSDecorating hyperlinks is one of the most common uses of CSS on the Web today. Just about every link that you've seen that changes color, fonts, backgrounds, becomes underlined or just about any other change when the mouse is on, off or clicking or not clicking on a link is due to CSS. What was once only accomplished with Javascript, is now as easy to do as changing font size and color. You can use CSS to change the appearance and behavior of hyperlinks. The a:hover must be placed after the a:link and a:visited rules, since otherwise the cascading rules will hide the effect of the a:hover rule. Similarly, because a:active is placed after a:hover, the active color will apply when the user both activates and hovers over the a element. The link below is a little on the wild side, but it will give you a good idea of all the possibilities. <style type="text/css"> The above example can only be achieved by using embedded or linked style sheets which should not be used on eBay. If you would like to have your link colors match your page, the code below can be used.LINK <a href="#" style="color: #ff6600; text-decoration: none;" onMouseOver="this.style.color='#7c7e01';" onMouseOut=" this.style.color='#ff6600';"><b>LINK</b></a> |