Viewing 4 replies - 1 through 4 (of 4 total)
  • first off your pages link does not having a starting unsorted list take

      now you can style that tag to make them go horizontal for instance

    <ul class=”horizontal”> your pages list

    ul.horizontal {
    display: inline-block;
    list-style: none;
    }

    that should work. the list-style will remove the dots for the pages.

    Thread Starter ethanellis

    (@ethanellis)

    its not working ??

    The sidebar’s not at the top because your other elements are far too wide. Most of them are growing to be nearly the full 960 width because you’ve not contained them in a div with a declared width narrow enough. Because they’re so wide, your floated sidebar doesn’t have room to drift up to where you want it.

    It shouldn’t be too hard to fix. Just enclose all the stuff you want on the left in a div with a width narrow enough to make the sidebar fit.

    As to the pages, what go1dfinger says seems right to me. Be sure your whole list in enclosed by the <ul class="horizontal">(EVERTHING)</ul> — it doesn’t look like it is — and be sure to have at least the styling that go1dfinger gave.

    Thread Starter ethanellis

    (@ethanellis)

    I must be a idiot coz its not working ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Coded php now css is not working’ is closed to new replies.