Latest Lists

Unordered List Knowledge Base

How to make an unordered HTML list without having to copy paste each <li></li> tag individually? I have a huge list that needs to be made into an unordered list. There is no way I am going to copy and paste each tag around the words. I use phpDesigner and am very surprised I cannot just highlight the list and format into an unordered list. What's the best way to go about this task?
How do you create a bullet (not an unordered list) in Dreamweaver on a PC? What is the keyboard combination? I am trying to help a PC user create a bulleted list using bullets. I do not want to use a unordered list and redefine it. Does anybody know the keyboard shortcut to create a bullet in Dreamweaver CS5 on a PC?
how would you center an unordered list and put it in a row rather than a column? I'm working on a final project for my csce class, and I'm trying to create a navigation bar. I'm using an unordered list for the links, but I'm having trouble centering it and putting the links in a row rather than a column. Does anyone know how to do this, or maybe a better way of creating a navigation bar?
How can I have an unordered list to have different background colors and be able to edit the whole list later? I have an unordered list as navigation links. On the active page I have set a class so that cell has a different background color. The problem is: when I later want to edit the whole list to add or change links the site won't be updated site wide as the list is a editable region. How can I have different classes and also make site wide changes later on? Example of the editable region. <ul> <li class="active"><a href="#">Home</a></li> <li><a href="#">Second Link</a></li> </ul>
Is there an easy way to convert a long list of comma-separated words to an unordered list? I am trying to convert a 3 page long list of comma-separated color names to an unordered HTML list. Is there any easy way to do it within MS Word or any other source? It would take me countless hours otherwise.
For a website's SEO, should the main menu be an unordered list of list items with anchor tags inside? For a website's SEO, should the main menu be an unordered list of list items with anchor tags inside? Right now, I'm using a div with anchor tags inside? Does this acheive the same SEO score?
Placed table within div ~ will not show unordered list? I placed a table within a div tag for further formatting on a site I am designing. I created an unordered list within that table, but it will not show up. Is this because it is within a table within a div? If so, what else can I do in the stylesheet to make it show?
How do I put the bullet images in unordered list CSS? Here is what I have and this is an external style. ul {list-style-type:none;list-style-image:url();} I do not know where to get the bullet images and how do make them show up on the page.
How do I make and Unordered list with links inside it? I'm trying to make an <ul> with links inside as the things that I list. Heres what I am doing: <ul> <li><a href="http://www.google.com>Google</a></li> </ul> Am I doing it right? It is not showing up at all...
Other than bullets for unordered list in html? I was wondering if there was a way in making an unordered list but have another symbol in place other than plain bullets. If there is, can someone show me how in html code for a notepad. Thanks!
How do you change the bullet colors for an 'Unordered list?' (html)? As an assignment in my web design class, we have to make a working site in Notepad. I'm trying to change the color of the bullets in a <ul>, so the <li> part of the list; not the text that goes with it. I have this set up: <font color="ffffff"><li></font>blah blah text blah It DOES change the color, but it also moves the bullet up and AWAY from the text line, and I can't adjust them to line up. They line up again when I take the font tags out, but returns to the default color for the text. :/ Thanks for any help in advance!
How can I identify which page it open by changing the background color on a navigation unordered list.? I want a list to identify what page is currently open by the background color to be different. The list is an editable region so I cannot edit each page as I may later need to edit the list. Here is an example of the list as I've tried. But this way I cannot edit the template making site wide changes. <ul> <li class="active"><a href="#">Home</a></li> <li><a href="#">Second Link</a></li> </ul>
how to remove CSS unordered list indent space? How to remove the indent space, after applying list to the 3 lines of text button, when applies it pushes the object to some space forward, how it is possible through CSS HTML to remove the indent space of underorder list. but before answering this question, you must keep in mind that i want the underorder list, how to do it through css.
How do I enter bullets or make an unordered list in Mac Os X Mail? How do I insert a bullet? Driving me mad! All I want to do is make a bulleted list in the body of my mail message. In MS Outlook I would just click the button and joila! In Mac OS X Mail I cannot find any way to insert a bullet into my mail message at all. I have tried Mail Help and it sucks. Sorry, I love my new Mac and I am trying to believe that it really just is ignorance on my part, so please help. By the way I have answered hundreds of questions and no one ever seems to answer mine :(
In HTML, how would you get an unordered list to go all the way to the left? Like justifying it left.? Here is how that list would display: * list item 1 * list item 2 * list item 3 All i can do is make it align like this... I want the bullet to be aligned with the "H" on "here". Here is how that list would display: * list item 1 * list item 2 * list item 3 * represents a bullet All i can do is make it align like this... I want the bullet to be aligned with the "H" on "here". I am not allowed to use an CSS files
How UL (unordered list) in a html & tell me Alignment of text? when I add link in text alignment will be change pl help me
How do I remove bullet points from an unordered list in html (Not CSS)? I have been using using css for so long that I have completely forgotten how to do this in just html. Please trust me when I say that this must be done in html only (it's a field entry into a web based program) Not having much luck searching google and w3schools.com doesn't appear to have this information any longer.
How do I put an unordered list in the center of my html? eg. <p align="center"><ul type="circle"> <li><a href=sample2.html>S2</a> <li><a href=sample3.html>S3</a> </ul> </p>
xhtml displaying unordered list horizontally using css and id tag how? I have a unordered list with links to each page in the website like this... <ul id="hole_list"> <li><a href="h01.htm">1</a></li> <li><a href="h02.htm">2</a></li> <li><a href="h03.htm">3</a></li> <li><a href="h04.htm">4</a></li> <li><a href="h05.htm">5</a></li> </ul> In my CSS file I have tagged #hole_list with the following #hole_list{ text-align: center; height: 30px; margin: 0px; background-color: rgb(53, 43, 48); font-weight: 700; color: white; font-size: 1.25em; list-style-type: none; padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; } Now whem I display the html it shows my page links like such " 1 2 3 4 5 " What I would like are the links right beside each other like so... "1 2 3 4 5" How can I display the links horizontally beside each other? I now have the list displaying horizontally like so "1 2 3 4 5" thanks to answers, but now just need it in the center. So I am trying indents/margins/padding too align it so...I am not suppose to mess with the htm file just CSS to apply styles to Id tags in the htm file...So far thanks to all just trying to align now which shouldn't be that hard...thumbs up :)
Difference between ordered and unordered list? Difference between <UL>unordered list</UL> & <OL>ordered list</OL>
Unordered list styling? I have an unordered list, but i need the bullet points to not appear. In case you say delete the unordered list...the javascript will only support it if i keep it an unordered list. Thanks in advance! HTML unordered lists, that is... and they are controlled by JS
what are the total number of non repeating combinations of an unordered list of 54 items? For example how many different pizza could be made with 54 different toppings, including all 54 on one pie etc, not counting repeats (ie pepperoni & mushroom = mushroom & pepperoni, & only count as 1 unique pizza combo)
xHTML unordered List? I am asked to give an : unordered list types - side by side - e.g. Sports, Subject Codes etc.. What does it mean by "- side by side - " Anyone know? <ul> <li>1 </li> <li>2 </li> <li>3 </li> </ul> Thats my list as it is now, how do i make it "side-by-side"?
Removing bullets from unordered list (<ul>).? Hi, I'm building an unordered lists which looks something like this: <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> My question is how I can remove the bullet that appears next to each list item. Thanks, -D
how to create unordered list within ordered list in html? the code below is suppose to create a vertical menu. a is suppose to 1 and b is to 2 and so forth. i want to create an unordered list under each alphabet. but whenever i try it the unordered list jumps out of the menu and the ordered list does not appear. can anyone tell me how to do it. <html> <head> <style type="text/css"> a:link,a:visited { display:block; font-weight:bold; color:#FFFFFF; background-color:#98bf21; width:150px; padding:4px; text-decoration:none; text-transform:uppercase; } a:hover,a:active { background-color:#7A991A; } </style> </head> <body> <a href="see2.html">A</a> <a href="roh1.html">B</a> <a href="roh.html">C</a> <a href="letmesee.html">D</a> </body> </html>
Element Comparisons in Unordered List? I am given a sequential algorithm that does a routine search on an unordered list. N = 20. The probability that the value x does NOT appear in the list is exactly 60%, and the probability that x DOES appear is 40%. The 3 questions that I could not get were: A) What is the avg number of element comparisons performed when n = 20 and x does NOT appear in the List. (my answer was 20, is this correct?) B) What is the avg number of element comparisons performed when n = 20 and x DOES appear in the list? C) What is the avg number of element comparisons performed when n = 20. This should be a single number answer they said. Please explain answers.
How do I get css boxes from an unordered list to display horizontally rather than vertically? I have thumbnails that will link to other pages and they are in an unordered list but I forgot what properties you need to set so that each box will be horizontally rather than a long vertical list? I tried display: inline and it didn't change it... I'm trying to get each box to show up to the right of the previous one. .navboxes { list-style-type: none; padding: 2px; text-align: center; height: 60px; border: 1px solid #FFF; width: 80px; float: left; clear: both; }
[HTML] How to make a table with both an unordered list and ordered list side by side in the same table? I'm not sure how to do it. I got it done but it seems tedious and messy and I'd assume there is a better way. What I wrote was: <table border=1> <thead> <th>Unordered List</th> <th>Ordered List</th> <tr> <td><ul><li>An item</td></ul> <td><ol><li>First item</td></ol> </tr> <tr> <td><ul><li>Another item</td></ul> <td><ol start="2"><li>Second item</td></ol> </tr> <tr> <td><ul><li>Yet Another item</td></ul> <td><ol start="3"><li>Third item</td></ol> </tr> </table> is there any better way to do this? thanks in advance
How do I remove the top margin from an unordered list? I am working on a website, and the text in question is currently displayed this way: "Jaw Position * If your upper teeth slightly overlap your lower teeth, then select Normal Overbite from the drop down menu. * If there is a gap of more than 2mm (the thickness of 2 pennies) between your upper and lower teeth when biting together, then select Severe Overbite. * If your front teeth meet edge to edge or if your lower teeth are in front of your upper teeth, then select Underbite" I want to remove the space between the work "jaw position" and the unordered list. I have tried this several ways including editing the tag to read <UL STYLE="margin-top:0"> and adding the "margin-top:0" to the style information at the top of the code. Does anyone have an alternate solution?
How do I use CSS to change the color of an emphasized (italicized) part of an unordered list? Okay, so I have an unordered list (for the sake of this, just imagine my entire document is so far purely XHTML) and I'm using a separate CSS document to style it. There is an unordered list and the list should be blue, but one word of one of the lists is emphasized (in italics) using the xhtml: < em >. So how do I use CSS to make that italicized word (and just that word) green while the rest remains blue?
How to vertically align an inline list in a div? I have an unordered list displayed as "inline" (horizontally) and want to put the list in the vertical middle of it's 50px tall container div. This is for a simple navigation menu, and nothing I have tried works!
How do I order a list of ten items from least to greatest using an icon off the toolbar or the mouse in Excel? I have an unordered list of ten items down column A. How do I order them from least to greatest using an icon off the toolbar or the mouse in Excel?
How to move the circles on the side of the list? I am writing a website in arabic. I used an unordered list <ul>, and the <li> circles appear to be on the left side of course. Is there a way that they can start on the right instead?
how to center the UL (unordered list) in a html page using div? sometimes, i want to use center the UL list in a html page so , i can set the menu center of the page. I see the UL is always left aligned or right aligned. thanks for the help in advance Well, i got the right answer at http://css.maxdesign.com.au/listamatic/horizontal19.htm this is exactly i was expecting for, Thanks for the replies
An unordered list in HTML (and Dreamweaver) is commonly called a(n)? -alphabetical list -bulleted list -numbered list -none of these
HTML unordered list help!? http://www.ivoog.com/link See the list with the 2 bullets where it says "violate any laws, third party rights, or our policies; violate our prohibited items policy;" How can I make that list to be lined up with "While using bob, you will never:" So I need the bullets to be lined up with the "W" Please edit the code for me or explain clearly. It MUST be cross-browser compatible. So it should look the same with Internet Explorer and Firefox. Please help! This is VERY annoying. Thank You! First answer to get it right gets the 10 points best answer and five stars! LOOK IN SAFARI AND INTERNET EXPLORER! IF I USE A NEGATIVE MARGIN THEY ARE BOTH DIFFERENT FROM EACH OTHER. Sorry, I meant Opera, not Safari. Sorry. If "psioniceagle" gets it right you will get 10 points and five stars!
For a given unordered list of three numbers, how many different ways of sorting it are there? I am working on a data structures project, and I am trying to come up with a particular algorithm. That being the case, I ran into having to figure out how many different ways there are to sort a list of numbers (for now, let's say three). The numbers do NOT have to be adjacent to each other. For example, if the list is (1, 7 , 5), the simplest solution is to switch the 5 and the 7, resulting in (1, 5, 7). But you could also switch the 7 and the 1 resulting in (7, 1, 5) then the 5 and the one: (7, 5, 1) and finally the 7 and the 1 again (1, 5, 7). I'd like some help on knowing how many different possibilities there are. Thanks in advance for any help.
How do you get a horizontal unordered list to center? The <ul> is horizontal and is being used as a navigation bar (no bullets, etc.). I made it by doing float: left on the list items, so I could get them inline. Also, I made the links (<a> tags) block elements, that way I could have the width: 100%; so it only has the width of the list item, not any static width. How would I center the navigation bar? I tried making the left and right margins auto, but that doesn't work. Also, text-align: center; doesn't work either. Is there another way of making the list horizontal? I tried display: inline; for the list items but the links' width became too large since 100% was the width of the container (it wasn't a block element anymore, since it had to be inline) and I don't want to make static widths for the links(i.e. width: 100px) ya .. i was definately not going for absolute positioning i'm going to try to make divs around each list item, see if that still lets me do width: 100% for the links
How do I create a nested unordered list that can expand / collapse and is accessible? Do you have any idea on how to create an accessible nested list in which each branch can be expanded / collapsed using JavaScript? I have tried inserting dummy links (which I know isn't good!), buttons, and images at each level that can trigger the expand/collapse but these have proved very confusing for screen reader users. Instead of hiding the menu using display:block/none, I tried positioning it off-screen, so that screen reader users could access the entire list at all times. This worked, but the trigger buttons I had inserted for sighted still caused confusion. Are you aware of an accessible ways in which to achieve this task, or can you point me in the direction of any website where this has been achieved successfully?
What is the html code for multiple unordered lists? I want to create a set of unordered nested lists that have have circle style bullets for the first list and a url style bullet for the second list (the nested list). I can get the url nested list to look great but I can't get the the regular circle bullets to show up anymore for the first list? UL {list-style: url("http://***.gif")} for the url style bullet UL {list-style:circle} for the original circle How do I get the circle unordered list to come back? Ul If I use the standard <Ul><LI> </LI></UL> I keep getting the new url bullet and not the original circle. I want to have both in these nested lists. I have found a way to cheat but I am not sure this is the ebst way. I have changed the ordered list tag from showing numbers to showing bullets. This way I can have two different bullet styles. But I want to know how to have mulptiple unordered list bullet styles. There has got to be code for that. What if a person want multiple url bullets in a page? Is there a way to differentiate the unordered code in the css? Like do you do something like: UL1 {} UL2{} Just like H1 and H2?
Magic word to omit the blank line before an ordered/unordered list in HTML? I want to have something like this: These are a few of my favorite things: o Chocolate o Daffodils o Children's laughter (Where "o" is really a bullet, or lower-case letters.) I want to use <ul> or <ol>, depending on the context, and <li> but I do not want want a blank line between the introduction line and the first element of the list. Is there a way to do that in either HTML or with a CSS? ============ I'd like it to be simple and elegant. Everything else I write is. Thanks, though. ========= Thanks, Pete, but - that's absolute again. If I assume everyone will be using a font 10 px high, fine; but they don't. -2px would be negligible for the folks with bad eyes who use 20 px font; -10 would have my lines overlapping for the cell phone users with 5 pc font. ========== Hi Pete, I should test things before I make assumptions. Margin -5 worked just fine, and didn't overlap when I zoomed out to a 3-point font. Thanks!
How can i only display only the 2nd set of list items in an unordered list? I am building a wordpress site. I have a horizontal navigation with 4 links. Under the commercial page I have 4 sub pages. The client doesn't want it added in as a hover. he wants it on the side of the commercial page. How can I just display the second level of links? In the horizontal nav I have a different div class and on the sidebar i have a different div class. If you could help me out that would be great. CSS CODE HTML Code: /* SIDE LEVEL 2 NAVIGATION */ .navigationallink .pagenav ul li { display: none; } .navigationallink .pagenav ul li ul { width: 200px; border-radius: 25px; float: left; margin: 0; display: block; padding: 0; padding-top: 0px; list-style: none; visibility: visible; } .navigationallink .pagenav ul li ul li { list-style-type: none; color: #FFFFFF; display:block; width: 200px; float: left; visibility: visible; } .navigationallink .pagenav ul li ul li a { width: 200px; background: url('images/gradback.gif'); display: inline-block; padding: 0px; margin: 0px; color: yellow; font-weight: bold; text-align: center; text-decoration: none; height: 30px; line-height: 30px; } .navigationallink .pagenav ul li ul li a:hover { background: url('images/hoverstate.gif'); } /* END NAVIGATION */ Here is the source code. The level that shows Burglar Alarm is the only one I want to show in the sidebar. I will add more pages to that level later once i get this done and figured out. HTML Code: <div class="navigationallink"> <ul id="sidenav"> <li class="pagenav"><h2 class="displaynone">Pages</h2><ul><li class="page_item page-item-4"><a href="http://localhost/wordpresse/">About Us</a></li> <li class="page_item page-item-7 current_page_item"><a href="http://localhost/wordpresse/commercial/">Commercial</a> <ul class='children'> <li class="page_item page-item-15"><a href="http://localhost/wordpresse/commercial/burglar-alarm/">Burglar Alarm</a></li> </ul> </li> <li class="page_item page-item-9"><a href="http://localhost/wordpresse/residential/">Residential</a></li> <li class="page_item page-item-11"><a href="http://localhost/wordpresse/contact-us/">Contact Us</a></li> </ul></li> </ul> </div>
list of unordered elements? Given a list of unordered elements and two numbers Devise a divide & conquer based algorithm Count( ) which returns the tuple (c1,c2) where is c1 the number of elements in list A which are less than x and c2 which is the number of elements in list that are greater than y For example, if input list is [5, 3, 2, 10, 9, 16, 4, 5, 11] and x-10 ,y=7 then the procedure returns (6,4). (a) Write the pseudocode for Count( ). Do not use global variables in your code; (b) Write the recurrence relation for the code you wrote in (a); and (c) What is the time complexity of this code?
Proper Unordered List with sub-headers and footers? http://www.goonsquad.org/sample.gif That's what I am trying to do, with a formatting similar to this: <div id="nav"> <ul> <li class="header">Products</li> <li>Link</li> <li>Link</li> <li>Link</li> <li class="header">Services</li> <li>Link</li> <li>Link</li> <li>Link</li> </ul> </div> I am just not sure what the CSS should be? I only need the header and footer help, adding a 1px border to the left and right of the links is not that challenging ;)
How to set the font within an list in XHTML? I'm a complete novice trying to write some xhtml 1.0 transitional script, so I apologize for asking such a simple-minded question. When trying to validate my page on w3c markup validator, I'm running into a error when making an unordered list. The script listed below passes validation - but I want it to display in the following font: <font face="Arial, Helvetica, sans-serif" size="2"></font> My question is where do I add this? Do I have to add the <font> element to each and every <li> line? Or is there a way to just specify the font style once for the entire list? I am opting for the latter, but that is where I am running into trouble in the markup validator. Thank you for your help! Red Unordered List: <ul> <li>Division I <ul> <li>Mr. A, 3 dan, 4-0</li> <li>Mr. B, 3 dan</li> </ul> </li> <li>Division II <ul> <li>Mr. A, 3 dan, 4-0</li> <li>Mr. B, 3 dan</li> </ul> </li> <li>Division III <ul> <li>Mr. A, 3 dan, 4-0</li> <li>Mr. B, 3 dan</li> </ul>
extra space due to ordered & unordered lists in web design? Hi I am a website designer. I face a problem many times in Order Lists and Unordered Lists. When I use these, there is a extra space visible above and below list items. How can I remove that extra space using CSS? Is there any other way so using lists does not disturb the design? Thanks GoogleToolsFree.com
Can I use an animated GIF character with the "list-style-image" property in XHTML? I`ve created an animated bullet point using Fireworks (tweening function) and would like to include with each unordered list item. Unforetunately doesnt work so I`m not sure if its a mistake on my part or there is something inherent about animated GIFs which precludes them from being used with this type of markup tag.
I'm having trouble left-aligning my unordered bullet point list? It's on a website I go to on this page: http://www.neopets.com/~Crawlix I'm not sure what i'm doing wrong but is there a certain code to properly uncenter the bullets to align them perfectly? I wasn't sure which category this question would go in sorry if it's incorrect.
What is the html code for a list with no bullets? Don't want dictionary, want unordered list without bullets. http://www.geocities.com/jadeaaustin/index.html
is it possible to add array list elements to hash set elements in java? is it possible to add array list elements to hash set elements in java... i knw set is unordered and allows no duplicate elements..n list allows ordered but duplicate elements..is it possible to take the object of set and list and add...??
In HTML, should a list be inside a paragraph? When making a list, either ordered or unordered, in HTML, does it have to be within paragraph tags to be standards compliant? I know it'll work either way, but is one way more right than the other? Same question for header tags, like H3. Should a header be inside the paragraph tags, or separate?
Which of the following is NOT an HTML supported list? Bulleted (unordered list) Numbered (ordered list) Definition Indented (categorized list)
Styling a Html unoredered list with Css? I was just wondering if anyone could help me understand better how to style an Html unordered list using Css, so for future use I'll know how to do it. What I mean is break down the structure of the Html unordered list & how to target & style each element of the list using Css. How to float the list “left” or “right”, how to put a space between each link, how to move the list up or down my page & how to add a rollover graphic to each link in the list. If anybody knows of any online video tutorials that will show me how to do this, that would be great. If anyone can tell me of any tutorial videos to download that show a beginner how to manipulate graphics with Css & add that professional though, that would be great.
List... Applying upper roman style type to it The codes: <head> <title>Lists</title> <style type="text/css"> ol.class { list-style-type:upper-roman } ul.square { list-style-type:square } </style> </head> <body> <ol class="upper-roman"> <li>Ordered List</li> <ul class="square"> <li>decimal</li> <li>roman</li> <li>alpha</li> </ul> <li>Unordered List</li> <ul class="square"> <li>disc</li> <li>circle</li> <li>square</li> </ul> <li>definition List</li> </ol> </body> </html> What I want to do here is to apply the upper-roman style type to the ordered list... I have tried to do that (as you can see in the codes) but when I tried to run it, it's not in upper roman, instead it is in decimal (1,2,3...)... Help thanks. zzz. i know where my mistake lies... ==
How to make an html list with indents, bullets but no space between previous line? I am often asked to make a specific text style that I cannot figure how to do. All I want is to create an unordered list with regular bullets and regular indent. But that space that is built into lists between the first bulleted line and the previous line will not go away. Here is what I DON'T want: This is the last line in a paragraph      * This is the first bulleted line      * second bulleted line      * third bulleted line and so on Here is a mockup of what I want: This is the last line in a paragraph       * This is the first bulleted line       * second bulleted line       * third bulleted line and so on. See how I do not want a space between the last paragraph and the first bullet? I am using inline css for an email template.
How do I show an image before the number in an ordered list using a:hover? I have a sidebar using an ordered list. My intent is that when the client hovers over a link, an arrow shows up to the left of the entry, before the ordered list number. Usually without ordered lists this would be a simple procedure - I would just take the link, add some padding on the left, and then set a background image on a:hover so that when the client hovers over the link, the background image of the arrow shows up to the left. However I'm running into problems because ordered lists don't quite work the way I want them to. Let's assume I have the following code: <body> <ol> <li><a href="#">Link 1</a></li> <li><a href="#">Link 2</a></li> </ol> </body> Outputs something like this: 1. Link 1 2. Link 2 I want the CSS such that it will display like this on hover: -> 1. Link 1 2. Link 2 (of course they'll still be in line because it's an OL) I just can't seem to find a way to display the background image shown by a:hover before the ordered list number. What I get is this: 1. ->Link 1 2. Link 2 Any insights would be greatly appreciated. I know that changing the whole thing to an unordered list, and then manually numbering everything is an option, but I'd rather not go there for design purposes.
I created an unordered list within a cell in Adobe GoLive CS2 but it's not coming out right. Why? I selected the text within the cell and clicked on the bulleted list icon but in PREVIEW, there are no bullets? What's wrong? What do I need to do to fix this?
how to put colors to hover in drop down menu using css? i'm new in css and I made a horizontal drop down menu using unordered list in css. i want to make the drop down more attractive so i made some designs but one thing i dont know how to do, to change the background color of the list where you will point the mouse like mouse over. can somebody know how to do it?
Custom CSS bullet list style is appearing in ALL unorderd lists, even if they have other bullet types!? I have unordered lists that appear to have two types of bullet styles showing at the same time. I have a custom bullet that I made and I need to have some lists that have lowercase letters. The custom bullets work perfectly where they are needed but they also show up in the lists that have lowercase letters. I think it is because of my CSS: li { padding-left:25px; padding-bottom:15px; background:transparent url("http://www.geolearning.com/summit/images/summitbullet.gif") no-repeat; background-position:0 5px; } Please tell me how I can have multiple styles of unordered lists. I have tried things like li 1 {} and .li 1{} but they don't work. Please explain the answer clearly and completely- otherwise the directions are impossible to follow! Thank you!
You’d like to create multiple lines of text that are not indented, each starting with a solid round bullet a? You’d like to create multiple lines of text that are not indented, each starting with a solid round bullet and with no white space between each line. How would you do this? a. Begin each line with the code &#183 and end each line with the <BR> tag. b. Use the ordered list set of tags. c. Use the unordered list set of tags. d. Use the definition list set of tags.
What would be a good Web site to make for a computer class? I'm in a computer class and we're learning HTML stuff and how to make a Web site. Please keep in mind that it has to include an ordered (number) list and an unordered (bullet) list, along with much, much more. What I had in mind before I got the Requirements, a book review site, but I'm not sure how it will look with 2 different types of lists.
Bullets and ordered lists do not show up in IE7? I am using ordered and unordered lists while building my website. There is nothing fancy about them, just using basic numbers and the default bullets. The problem is that the bullets and numbers do not show up in IE7 but do show up in IE8. They show up in Firefox as well. CODE: <ol> <li></li> <ol> How can I fix this?
How do I create a repeating region in classic ASP? Can someone show me how to do this? Let's say I have a recordset named rsItems, which pulls records from the DB. I want to list all items found in the recordset like this: <ul class="webpower"> <li> <a href="#"><img src="img/image1.gif" alt="description" /><img src="img/photo01.jpg" alt="description" class="preview" /></a></li> <li> <a href="#"><img src="img/image2.gif" alt="description" /><img src="img/photo02.jpg" alt="description" class="preview" /></a></li> <li> </ul> That would list two static items in an unordered list in it's current fashion. What could would I need to add to make the list pull the info from the database and repeat the <li></li> inside the unordered list? Thanks to anyone who can help me out here!
Is there an easy way to convert a multi-level bullet list from WORD to HTML? I want to be able quickly update my website by essentially cutting and pasting a multi-level bullet list from a word document to an html page. If I just cut and paste into the code, I obviously just get a single level list. If I save the word document as an HTML I get a very messy code that won't reconcile with my css style well. Any suggestions. Most of my lists are unordered and three to four levels deep.
How to read a file with name and number pairs into an array and then put it in a hashtable? [JAVA]? I am trying to develop a Telephone Directory DictionaryADT and I am supposed to read an unordered list of name (Key) and number (Value) pairs from a file (numbers.txt), sort them alphabetically, then use hash codes to add, getValue etc. The file has stuff like: Greg2959 So I am guessing I will be using deLimiters to somehow seperate between the first 2 strings, then add the key&values to a hash table...however I am not to sure where to even get started with this thing. Would I read the file into 2d arrays, sort them then put it into a hashtable or can I add the stuff directly to a hashtable...? If someone could help me/point me in the right direction etc it would be really appreciated :) We've got to create our own hashCode BTW so I can't just import stuff.
Centering UL relative to a page? Does anyone know how to center an unordered list relative to the site which is 800px wide. I am having trouble centering my footer menu to the center of my page.
how do you change the "selected" item in an UL?? I'm working on a ajax tab system and I'm trying to make a tabular effect but the only way to do it is to change the "selected" item in an Unordered list (UL) and I'd like to know how I would do that in javascript. is there a way to pass the UL item through a href?? for example href="javascript:meSelected(this)" or what can I do? I just want to be able to pass the list item to the function and have that function change the selected UL item to the one that was clicked.
Mobile device CSS design - inline lists? Do inline lists not work when designing for a mobile device? I'm trying to make a horizontal menu but the styles aren't being applied. I'm using code from Listamatic (which renders properly in a regular web browser) but displays as a regular, unordered list on a mobile device
Help with HTML tags and attributes? I'm planning to make a sample .html document for a presentation. I need help with these tags... Can any of you give the tags for the following? - Ordered Lists - Unordered Lists - Definition Lists The type attribute values for... - Ordered Lists - Unordered Lists I've also been wondering about the use of the start attribute? Thanks guys.
XHTML lists? hi there.. i'm trying to nest three unordered lists into one ordered list. In my opinion the coding should be done the following way: <ol> <li>..........</li> <ul> <li>.............</li> <li>.............</li> <li>.............</li> </ul> <li>..........</li> <ul> <li>.............</li> <li>.............</li> <li>.............</li> </ul> <li>..........</li> <ul> <li>.............</li> <li>.............</li> <li>.............</li> </ul> </ol> Please tell me if i'm correct...if not how it should be?
I am working an exercise out of an old book concerning Using Node Properties and need help please.? 1.Create a new JavaScript function named generateList in a new HTML document. ( The original document has three lists that contain “The Legislature”, “The House” and “The Senate”) using the <li> tag. 2.Create a new element node for the <li> tag by calling the createElement method. 3.Create a new text node containing the text “The Legislature” by calling the createTextNode method. 4.Attach the text node created in Step 3 to the element node created in Step2 by calling appendChild method. ( the above creates the first list item. Repeat the above to create the second and third list items) 5. Create a new element node for the <ul> tag by calling the createElement method. 6. Attach the 3 <li> element nodes to the <ul> element node. 7. Create a new <div> element node. 8. Set an id attribute and assign the value of “ulist” for the div element node by calling the setAttribute method. 9. Attach the <ul> element node created to the <div> node. 10. Attach the <div> node to the document body. 11. Invoke the function with the onLoad event handler in the <body> tag. The unordered list should be displayed. I can’t get it to work…Help!
Question about bulleting in Html (Dreamweaver Especially)? My question has to do with making a n Unordered list in Dreamweaver. I know how to make the list but my actual question is this: I can change the color of the text and the bullets but i am unable to change just the color of the bullets, how can i do this in CSS Also, how can I set all my bullets to a certain image
JavaScript/CSS beginner question? I need to know how to change the style of an element that I set, with a CSS document, in a JS function. I don't know if this makes a difference or not but it's in an unordered list. I can't seem to find the right way to access the element. I am trying to change the background of a link and change what picture is displayed.
HTML experts please get me out this CONFUSED state? When you dealing with Unordered Lists. This book I reading on HTML states I can add all three style together using this syntax <ul style="list-style: square url(George.jpg) inside"> But here's my question, IF I using an image then why the hell I would need the type, why would I need square there?? I tested it out and when I ran the HTML code all I saw was the image, I saw no squares. So what I'm I not understanding
Why is that, when I navigate a UL's childNodes using javascript, every other childNode is of type "text?" So, when I do something like this "myUL.childNodes[0].nodeName" (that is "nodeName" -- Y! answers truncates it) , I get "text" -- as I do with every odd numbered childNode and the last childNode. Yet, when I build up an unordered list via Javascript and the DOM, there are NO text nodes. Any clues as to why?
CSS a:hover not working when domain ends with .com? Ok... So I have some standard links in a standard unordered list. I am using a:link, a:active, a:hover and a:visited to style the links. The links are just supposed to change from black to blue on hover, weird thing is, if the links end in .com, they dont work, the .co.uk and .de links work, and i have even switched them around to check this. Whats wrong? This is the code: HTML -------- <ul> <li><a href="http://www.webvicious.co.uk">Webvicious - Web hosting</a></li> <li><a href="http://www.smashingmagazine.de">Smashing Magazine</a></li> <li><a href="http://www.deviantart.com">Deviant Art</a></li> <li><a href="http://www.webdesignerswall.co.uk">Web Designers Wall</a></li> <li><a href="http://www.kulturbanause.de/">Kulturbanause</a></li> </ul> CSS ---------- #footer_columns_container a:link { color: #000000; text-decoration: none; } #footer_columns_container a:active { color: #000000; text-decoration: none; } #footer_columns_container a:hover { color: #3399CC; text-decoration: none; } #footer_columns_container a:visited { color: #000000; text-decoration: none; } You could go here to see for yourself: http://henry.brown.name/blog/ Look at the 4 columns at the bottom, the bookmarks bar, only the .com doesnt work on rollover, however if i change any of the other links to .com, they do the same :| Thanks very much! Link order changed and it's working fine. Something new learnt, I'm happy.
web programming question? in microsoft word there is a button u click on in the header and footer section where for each page a number appears that acts as the page number. so obviously if your on page 1 it will say 1, page 2 it will say 2. and so on. now im doing some basic html and javascript and for my assignment i have to make a list of unordered items (which i know begins and ends with the <ul><li> text here </li></ul>) but in the "text here" area i would like to have somethin like that page number in microsft word only in javascript. for example on a webpage im supposed to have a text box where the user can type in a number and click on a button that will then lead them to a result. so if the question is "how many ingredients will you need to bake a cake" and they randomly put in the number 3, i will need to then reply with an unordered list saying "ingredient 1", "ingredient 2", "ingredient 3" i got everything but the number part of the situation. <html><head> <script language="JavaScript"> function message(num){ count=1; while (count<=num) { document.write('<ul><li>Ingredient </li> </ul>'); count = count+1; } } </script></head><body> <br> <p> </p><form name="myform"> How many ingridients do you need to bake a cake? <br> How many times do you have to write it? <input name="number" size="3" type="text"> <input value="Find Recipe" onclick="message(document.myform.number.value) " type="button"> </form> </body></html>
Help with Input/Output files in C++? The input to the problem is an unordered list of numbers stored in a text file. Each number is on a separate line of the file. There are at least 2 and no more than 15 numbers in the file. All numbers will be displayed 1 decimal place. Program must read the numbers for the text file and store them in sorted order in a new file. Program must prompt the user for the names of the input and output files. Program must display the ordered list.....
I am new to web page design and need help with HTML!! Read Further? So i am new to HTML and am trying to get list to center. I have tried to put in various codes in different areas and cannot get the whole list to center, am i doing something wrong or is there something i am missing? Thanks! Also, it is an unordered list and am using a image for the marker. <p style="text-align: center"> <b><h3><a href="http://page.icu.edu/~joe/CIT212/assign1.htm">Assignment 1</a></h3></b> <ul style="list-style-image: url(helmet.jpg)"> <cite><h5><li><a href="http://page.icu.edu/~joe/CIT212/assign1/tut1/chem2.htm"> Tutorial One</a> </li></h5></cite> <cite><h5><li><a href="http://page.icu.edu/~joe/CIT212/assign1/tut2/chem.htm">Tutorial Two</a></li> </h5></cite> </ul>
html, xhtml & css? The _____ tags must be at the start and end of an ordered list. <ol> and </ol> <ul> and </ul> <li> and </li> <dl> and </dl> Question 2 If a type attribute is not specified for an unordered list, the list uses the _____ bullet. square disc circle triangle Question 3 Numbered lists are also called _____ lists. browser ordered manager explorer Question 4 The <area> element is similar to the <img> element in that both require the ____ attribute in order to provide alternate text for image maps that are not displayed. temp other alt alternate Question 5 Bulleted lists are also called _____ lists. intranet extranet unordered newsnet Question 6 A column in a table is represented by the ____ element. <td> <tc> <th> <tr> Question 7 The _____ tag is used to create anchors for links to another page in the same Web site, to a Web page in an external Web site, within the same Web page, and for e-mail links. <a> <ol> <ul> <an> Question 8 The _____ tags must be at the start and end of an unordered list. <li> and </li> <ol> and </ol> <ul> and </ul> <dl> and </dl> Question 9 Which of the following attributes of the <a> element specifies the link target’s URL? src href name http-equiv Question 10 The _____ tags are used to define a list item in an ordered or unordered list. <li> and </li> <ol> and </ol> <ul> and </ul> <dl> and </d>
Please can somebody tell me what is wrong with these chunks of XHTML coding - its giving me a headache? *Firstly*: <body> <h1> Some New Tags <h2> Two Types of List <h3> An Unordered List <ul> <li> <!-- This is an unordered list, thus uses bullet points, not numbers to identify each point --> <h2>unordered list</h2> <ul> <li>A list with bullet point</li> <li>An item in the list</li> <li>Another one</li> </ul> </li> </ul> *Secondly*: <!-- This is an ordered list, thus uses numbers, not bullet points to identify each point --> <h3> An Ordered List <ol> <li> <h2>ordered list</h2> <ol> <li>The first item</li> <li>The second one</li> <li>The third</li> </ol> </li> *And finally*: <div id="pic1"> <img src="c8.jpg" width="200" height="150" alt="The Alfa Romeo C8 Competizione" /> </div> <div id="pic2"> <img src="azk-bubble-ltr-8b.png" width="200" height="200" alt="The letter 'B'" /> <div id="pic3"> </div> <img src="beach.jpg" width="200" height="150" alt="runners on Miami beach" /> </div>
Please help me with CSS? I'm building a website and I'm trying to make a multiple-row unordered list all in CSS, and i have gotten it to appear in my Dreamweaver "design view" to show up how i want it to look, but then when I publish it, it doesn't look like its supposed to. What things do I need to check over to make sure that my design view is the same thing that gets published?
CSS: Unordered list within a paragraph? In my stylesheet, I have paragraphs set to display a border on the bottom only. The problem is, when I add an UL within a paragraph, a border appears above the UL even though the closing paragraph tag comes after the UL. It's as if adding the UL automatically closes the paragraph (above the UL) and adds the border. What am I doing wrong and how can I fix it? This is occuring in Dreamweaver MX, BTW. The CSS: #content p { border-bottom: 1px solid #dddddd; } It works fine for all paragraphs except when I place an UL within one.
Help, HTML Question!!? 1) Write the HTML to create the following indentation effect: Apple pie, pudding, and pancake, All begin with an A. I know It's related with and tags and I could make the first two sentence right, not the last two.... 2)How will you nest an unordered list inside an ordered list?
CSS: what do I add to my ul declaration to force all ul's to a new line? I'm making unordered lists, where the li's all line up in one line. So that's easy: just add display block and float left. But one ul bleeds into the next continuosly. I need the ul's to be separated, as if by line breaks. Example: UL List item #1 List item #2 List item #3 /UL UL List item #4 List item #5 List item #6 /UL Cuz right now, it looks like: List item #1 List item #2 List item #3 List item #4 List item #5 List item #6
CSS IE Hacks? I've been trying to find a few sites that have a comprehensive list of CSS box model hacks to make IE behave. I'm fairly new (6 months) to CSS and am noticing that IE treats things like padding fairly different than FF. I've also noticed that the indenting of unordered lists is wonky. Are there a set of hacks available that will bring this in check? It is very frustrating.
Programmers & Designers - Css Need Help? I was told that one of the best ways to create a "Navigation Bar" ( wearther it horizontal or vertical ) is the create it in the "Html" style of a "Unordered list" & then style it using "Css", which is what I'm doing. I only new to the hole concept & the task of doing this is doing my head in. I was just wondering if anyone could help me understand how to style an "Unorderd list" using "Css". What each Element is & how "Css" effects each of the elements. 1: UL - When styling this element with "Css" what happens? 2: LI - When styling this element with "Css" what happens? 3: a - When styling this element with "Css" what happens? Basicly, as you can see I just want to know how to proper style an "Unordered" List, weather it be with "Text" Links or "Graphic" links
Why are not showing in ? I have the following html code: <td height="218" colspan="4" valign="top"> <ul class="MainText"> <li >Type of Properties: Vineyard, farmhouse, castle, villa, chalet, apartments...</li> </br> <li > Wide range of price</li> </br> <li> Paris</li> </br> <li > Provence</li> </br> <li >Alpine ski resorts</li> </br> <li >Cote d'Azur</li> </ul> </td> why am not getting line breakes (a line space bettwen the listed tiems)? I need to make the listed items bit further than each others of what they are. this is why am using a </br>, but it does not seem to be working. Why? is there any way to change the space between one item and another in an unordered list </ul>
change an unordered list in css? How can I create more space between list items in an unordered list? My site is controlled with an external style sheet, and the client wants there to be more space between list items...is there something I can add to the css? Like create a rule that applies to the ul tag? but what code? can any body help!!!
Css & Html & Graphics? I'm building a personal "Portfolio" using "Dreamweaver MX 2004", "Photoshop CS3" & "Css & Html". I want to build a horizontal navigation bar using an 'unordered list' combined with "Css & Html", I've already sliced up saved my on & off states in photoshop but I having troble trying to put my navigation bar together using "Css & Html". Dose anybody know of any good online video tutorials or other tutorilas that I can watch that will help me with this promblem.
what web page content does not belong in a list when designing the page? When is it appropriate to use an ordered list and an unordered list on a Web page? When should Web page content not be formatted into a list?
I need a tutor some one who can help me with html codes. I really am in need of help.? The Code HTML document (Appendix D) is expanded upon to include the following HTML elements: One graphic Two links to outside Web sites Four attributes applied to an HTML element Four paragraphs of text, separated by line breaks Two comment tags This week’s Expanded HTML assignment must also contain the following elements: Title Headings of three different sizes Two instances of bold Two instances of italics Two instances of a horizontal rule One list: ordered, unordered, or definition Two paragraphs of text related to course content Two attributes applied to an HTML element, such as alignment and/or color
Javascript experts please help? I want to use "Javascrpit" to create a mouseover effect in my navigation bar, I've made a on & off state in "Photoshop" for each link. I'm very new to "Javascript" but I'm keen to learn it for its dynamic abilties. I've tried to follow examples on line to replicate into my navigation but to my frustration can get it to work. can anyone help me turn this Html "unordered" list into a "Javascript" mouseover navbar. Thanks <div id="topnav"> <ul> <li><a href="/"><img src="Images/Index/unisite_off_06.png" border="0" width="100" height="27" ></a></li> <li><a href="/"><img src="Images/Index/contact_off_06.png" border="0" width="126" height="27"></a></li> <li><a href="/"><img src="Images/Index/portfolio_off_06.png" border="0" width="100" height="27"></a></li> <li><a href="/"><img src="Images/Index/home_off_06.png" border="0" width="76" height="27"></a></li> </ul> </div>
Code HTML Prepare an HTML document using Microsoft® Notepad? Code HTML Prepare an HTML document using Microsoft® Notepad, focusing on a concept relevant to this course. Begin by choosing a topic of interest. Brainstorm or outline important concepts related to the chosen topic. Structure your Web page to incorporate the following HTML elements: •Title •Headings of three different sizes •Two instances of bold •Two instances of italics •Two instances of a horizontal rule •One list: ordered, unordered, or definition •Two paragraphs of text related to course content •Two attributes applied to an HTML element, such as alignment and/or color
Css & Html Graphics Nav Bar? I'm building a personal "Portfolio" using "Dreamweaver MX 2004", "Photoshop CS3" & "Css & Html". I want to build a horizontal navigation bar using an 'unordered list' combined with "Css & Html", I've already sliced up saved my on & off states in photoshop but I having troble trying to put my navigation bar together using "Css & Html". Dose anybody know of any good online video tutorials or other tutorilas that I can watch that will help me with this promblem.
Just want some help in html? Because this is my homework and don't know what the hell I'm doing. So can show me a example of it Here it is: Create a personal Web page. Find a digital image that you can use as a background image using the BACKGROUND attribute of the <BODY> tag. Place your name as the first line on the page and format it with the <H1> tag. If you have a digital picture of yourself, place it directly beneath the <H1> tag. Next, add the following categories to your Web page using <H2> tags: •Contact Information •Work or School Information •Current courses that you are taking. •Biographical Information •Hobbies and Interests Separate each <H2> section with a horizontal rule. When necessary, use<H3> tags within an <H2> section to emphasize a subcategory. Your web page should also have each of the following HTML features: •Titled: My web page •Body tag with defined, text color, links and visited links color. •Ordered list and unordered list •Three links to another web page •A picture with defined align attributes •Any additional three features of your choice. Save the HTML document as PersonalPage.html That's the whole thing from the top of this to this one
can someone show me how to make an HTML code for notepad? Title Headings of three different sizes Two instances of bold Two instances of italics Two instances of a horizontal rule One list: ordered, unordered, or definition Two paragraphs of text related to course content Two attributes applied to an HTML element, such as alignment and/or color If you could show me examples so that I can learn from it I would be grateful thank you Needs to be for internet concepts
Calling All "Css" programming Experts? Hello fellow programmers I desperately need your help to solve this really annoying “Html” / Css” problem. I've created a horizontal navigation list using an "unordered list" & am styling it using Css. When the user place the cursor over each link an overstate graphic appears but the links below keep moving (shifting) how do I prevent this from happing and how to I get the whole graphic to appear just not part of it and also line up the text inside the graphic. Thanks for you help I'll paste in the code below div#leftnavcontainer { margin-left: 54px; } #leftnavlist { padding-left: 0; margin-left: 0; margin-top: 70px; border-bottom: 2px solid #9c0e1b; width: 190px; float: left; } #leftnavlist li { font-family: "Myriad Pro", "Myriad Pro Cond", "Myriad Pro Light"; font-size: 14px; list-style: none; margin: 0; padding: 0.40em; border-top: 2px solid #9c0e1b; } #leftnavlist li a { display: block; color:#000000; text-decoration: none; padding: 0; margin: 0; } #leftnavlist li a:hover { height: 26px; background: url(../Images/Index/leftnav_hover_graphic.png) no-repeat; color:#FFFFFF; }
Internet concepts HTML code ideas??? I have to create a basic html code for a web page related to Internet concepts.... this is what it needs to consist of.... title headings of three different sizes two instances of bold two instances of italics two instances of horizontal rule one list: ordered, unordered, or definition two paragraphs of text related to course content two attributes applied to an HTML element (such as alignment and/or color) now..i know how to do all the codes....my problem is getting started and what to write about...... can anyone help me with some ideas??
Java Script? Thanks again. If someone could look over these questions and possibly help me out. Any help is appreciated :) 1. A stable sorting method: a. always takes the same amount of time to sort duplicate keys. b. uses extra storage to sort duplicate keys. c. preserves the relative order of items with duplicate keys. d. performs an indirect sort on duplicate keys. e. none of the above. 2. A non-adaptive sort determines the sequence of operations based on: a. the number of keys. the radix of the keys. b. compare-exchanges of data. c. the value of keys. d. the order of the file. 3. Priority queue performance is: a. stable for all implementations. b. dependent on both keys and operations. c. best for an unordered list. d. best for an ordered array. e. worst with small keys. THANK YOU In answer to monkey_tester, yes I HAVE checked the textbook, otherwise I wouldn't have asked for help.
Help with WebPage Test!!! PLEASE..? 1. Using the _____ attribute of the < body > tag, you can change the background color of the Web page. A) bgcolor B) class C) color D) bg 2. The Internet links together millions of computers used by _____. A) the government B) businesses C) individuals D) all of the answers 3. An unordered list can use one of three different bullet options; the default is _____. A) square B) circle C) disc D) all of the answers 4. The _____ of a Web page contains the information that is displayed in the browser window. A) heading B) background C) title D) body 5. You use the ____ attribute within the < ul > or < ol > tags to change the default bullet or number type. A) category B) list C) type D) change 6. The home page of a Web site is generally called _____. A) start.html or start.htm B) homepage.html or homepage.htm C) index.html or index.htm D) home.html or home.htm 7. The largest heading style or size is indicated by the _____ tags. A) h6 and /h6 B) h1 and /h1 C) h major and /h major D) /h largest 8. Each item in a list must have the _____. A) item tag and the start and the /item tag at the end B) li tag at the start and the /li tag at the end C) ol tag and the start and the /ol tag at the end D) ul tag at the start and the /ul tag at the end 9. You use the _____ tags to indicate the start and end of a paragraph. A) ul and /ul B) p and /p C) title and /title D) li and /li 10. The tags _____ indicate the start and end of an HTML document. A) html and /html B) head and /head C) body and /body D) title and /title
can someone show me how to set this up. show me an example so I can learn? Title Headings of three different sizes Two instances of bold Two instances of italics Two instances of a horizontal rule One list: ordered, unordered, or definition Two paragraphs of text related to course content Two attributes applied to an HTML element, such as alignment and/or color trying to set up an web page and I do not understand the HMTL
CSS Descendants? I have a descendant selector like this ul#navigation{ } So all unordered lists that appear within the navigation div, "do this" I always thought that descendants needed a <space> between each 'Family Member' to trigger a descendant selector. I put a space first between the <ul> and navigation div and it didn't work. I removed the space, and it worked? Don't I need a space to trigger these type of selectors? Thanks David D.... Then if its not a descendant, what is it's proper name? Is it pattern matching? It's just that the 'no space' has thrown me off a little. I thought selectors always required a space weather it is descendants, grouping etc.. match the <ul> element whose ID attribute has the value "navigation"
Powered by Yahoo! Answers