Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Multiple ul’s

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #43196
    jwill216
    Member

    Hi. I have multiple ul’s in my html. One is for navigation(home, menu, contacts etc) and the other is links to jump throughout the page (starters, lunch, breakfast etc). I want my links to go across the page and not straight down in bullets. Whats weird is that when I open my file in a web page it comes out correct, same when I view it on web expression. Only when I try to really pull the page up on the internet with my domain name attached is where I have the problem. There are bullets and the content is going straight down. What am I doing wrong? Below is my html, the first is the ul for the navigation and the second is the ul for the jumps throughout the page and right below that is my CSS code for it. Any help would be great.

    li {
    display: inline;
    font-size: 20px;
    }

    #127239
    Paulie_D
    Member

    I’m guessing that the CSS isn’t loading on your domain somehow.

    BTW…you can’t use the same ID more than once.

    id=”M1″

    Use a class instead.

    AND….you can’t put anchor links inside anchor links link..as you have here…multiple times.

    #127241
    noahgelman
    Participant

    Make sure your file paths are correct. Sometimes when moving things from one place to another, things get moved around. It sounds like it’s not finding your css file.

    #127295
    Kitty Giraudel
    Participant

    > AND….you can’t put anchor links inside anchor links link..as you have here…multiple times.

    ![Yo dawg](http://i.qkme.me/3t9w6t.jpg)

    Sorry. :D

    Edit: on topic, [Quasi-nested links](http://jsfiddle.net/csswizardry/rxsna/).

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.