Re: HTML Navigation Menu Alignment Issue Programming Web Development by aundigital … Display: By default, list items (<li>) in an unordered list (<ul>) are displayed as block elements, which… Unordered List (UL) causing me problems in IE Digital Media UI / UX Design by punkrockbboy … on Internet Explorer the other day i found that the unordered list images slope down to the right, it's very… Unordered list problem in IE, first item displaced Digital Media UI / UX Design by steve136 …, fine in firefox) where only the first item in an unordered list is displaced to the right (about 6 characters) The… Unordered Hashmap implementation Programming Software Development by veer123 Hi want to implement an unordered hashmap ie. FIFO implementation . Below is the code.Please help … unordered pair? Programming Software Development by daviddoria Is there a built in type to store UNordered pairs? ie. I want these [code] pair<double, double> a(4.0, 5.0); pair<double, double> a(5.0, 4.0); [/code] to be equal. Do I have to make a wrapper and override == ? Thanks, Dave Unordered Lists Digital Media UI / UX Design by Duki Is there a way to make links in unordered lists be non-underlined by default? And when the user … Moving unordered list code Digital Media UI / UX Design by charisma I built this web page with unordered list in the content div tag. But it does not …look right. It should be 5 unordered list accross and then on the next row another 5… Re: Moving unordered list code Digital Media UI / UX Design by JorgeM I took a quick scan of the code and found these two items that do not seem correct. Not sure if its going to fix your issue, but anyway... Line #235, you are missing a semicolon after the width style. Also, from my understanding, the paragraph element is not an element that can be nested within the unordered list element. News with unordered lists Programming Web Development by PF2G …; </table> [/CODE] But i can't do the unordered list as i want. Or some <br/> so… creating unordered list with jquery Programming Web Development by Violet_82 … if anybody can advise. I am trying to build an unordered list with a few items in a page, and I… Re: creating unordered list with jquery Programming Web Development by Violet_82 … little bit of my own initiative - to have the empty unordered list and populate it with the `<li>` tags… Store unordered list Programming Web Development by iamthwee … how, using jquery or php do you convert the above unordered list to a parent child relationship preserving order? Ta. Re: Store unordered list Programming Web Development by diafol … to provide themes (which are different to styles). **BTW** Your unordered menu I think is wrong. The 'sub ul' should be… Re: Store unordered list Programming Web Development by iamthwee … loop through the list http://stackoverflow.com/questions/3158265/traversing-unordered-lists-using-javascript-jquery then use php serialise to store… Re: Store unordered list Programming Web Development by iamthwee It's not the second bit I'm struggling with, it is converting the unordered lister to a parent child relationship or a multi-dimensional array. There are loads of examples doing the second but not the first? Re: Store unordered list Programming Web Development by iamthwee For anyone who is interested in converting an unordered/ordered list to a parent child relationship whilst preserving the classes I used a php class called html2array... But I had to heavily modify it to strip out all the crap. Re: Unordered List (UL) causing me problems in IE Digital Media UI / UX Design by sreein1986 please use your style sheets in another file and save it name.css add this code in your html file <link rel="stylesheet" type="text/css" href="name.css" /> and now check it it's working in internet explorer also Re: Unordered List (UL) causing me problems in IE Digital Media UI / UX Design by punkrockbboy Thanks for the quick response, but if you check the link i supplied and look at the source code you'll see i set up the css file separately in the first place when i started to build the site: [CODE]<link rel="stylesheet" type="text/css" href="firefly.css" />[/CODE] Like i say, when i check it on Windows … Re: Unordered List (UL) causing me problems in IE Digital Media UI / UX Design by sreein1986 I didn't get in your reply wht r u asking second one Re: Unordered List (UL) causing me problems in IE Digital Media UI / UX Design by punkrockbboy My CSS file is separate from the HTML, i never included them together in the first place is what i said. The problem however is still present, the photos do not display properly. Re: Unordered List (UL) causing me problems in IE Digital Media UI / UX Design by sreein1986 now i understood can you send me files with diffrent attachments like style sheets is diffrent and html file is diffrent i will give solution to this Re: Unordered List (UL) causing me problems in IE Digital Media UI / UX Design by moerpheus [QUOTE=punkrockbboy;625287]My CSS file is separate from the HTML, i never included them together in the first place is what i said. The problem however is still present, the photos do not display properly.[/QUOTE] Hey, I think the way the photos are displayed in IE looks better than in firefox. I like the slope style... But its ur web … Re: Unordered List (UL) causing me problems in IE Digital Media UI / UX Design by mmann I had the same problem in the past and fixed it by changing the px sizes slightly. It made no difference to the look and feel but did fix the IE issue. It took a little experimenting but it worked in the end. Re: Unordered List (UL) causing me problems in IE Digital Media UI / UX Design by punkrockbboy I asked on another forum and this guy spotted the problem straight away, i just needed to insert this: [CODE].photos li{display:inline;}[/CODE] into the CSS file, problem solved. Re: Unordered List (UL) causing me problems in IE Digital Media UI / UX Design by MidiMagic The problem is in your style. [code] ....{width: 78px; height: 112px; margin: 0px 5px 0px 5px;} [/code] You have size styles and nonzero surrounding styles in the same style. This causes IE to behave differently than other browsers. The other browsers put those 5px margins outside the 78px width, for a total width ofg 88px. IE puts … Re: Unordered list problem in IE, first item displaced Digital Media UI / UX Design by buddylee17 Could you post the code or give a link to your site. Re: Unordered list problem in IE, first item displaced Digital Media UI / UX Design by macneato Hi Steve, I second Buddy... Its probably something minor, need to see the code though. Re: Unordered list problem in IE, first item displaced Digital Media UI / UX Design by steve136 You are probably right in it being something simple, think I have been staring at this to long. I have not published the site yet so I have stripped down the code as much as possible and put the css inline. I am using an external css file but the error is in this little bit somewhere. Many thanks <!DOCTYPE html PUBLIC "-//W3C//DTD … Re: Unordered list problem in IE, first item displaced Digital Media UI / UX Design by MidiMagic I see some problems: - You have 0px in your styles. 0 must be alone, without a unit of measure. 0px, 0em, 0%, 0pt, and other 0 values with units of measure attached cause Firefox to throw away the entire style. - You have surrounding styles (margin, border, padding) in the same style or tag as size styles (widths and heights). IE renders these in… Re: Unordered list problem in IE, first item displaced Digital Media UI / UX Design by MelechM Fixed it. However I had to add an if IE statement and the code within there is a bit different from the original code to fix the IE problem. [code] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head>…