|
| 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!
|
![]() |
Making Lists/CSSCSS allows you to customize lists that can be made with HTML. There are three styles in respect to lists: list-style-type: x;, list-style-position: x and list-style-image: x;. In HTML you would use either <ul> or <ol> and the type of list you would like to use. When using CSS, you will only need to use the <ul> tag. You then simply enter the "list-style-type: x;" that you would like to use. Your choices include: "disc", "circle", "square", "decimal", "lower-roman", "upper-roman", "lower-alpha", "upper-alpha", "none", or choose an image url(x) Always specify a "list-style-type" property in case the image is unavailable. The position would include "inside" and "outside". You can also use a shorthand version: list-style: type position url(x);.
<ul style="list-style: disc inside;"> By adding the "color" attribute and using the <span> tag, you can make the bullets a different color.
<ul style="list-style-type: square; color: #ff6600;"> This is how the list-style-position: x (outside or inside) positions the bullet..
<ul style="list-style: square outside;"> Making a Menu (Navigation) ListMove your mouse near a menu item, and the background color changes. The rollover is a simple and effective way to enhance a menu. We demonstrate how to design a rollover menu using only CSS and HTML. No Javascript required. The underlying structure of the menu is an unordered list so that it remains meaningful in browsers that don't fully use CSS for visual rendering (older browsers, text-only browsers). <style type="text/css"> <style type="text/css"> |