• Resolved AyeAaron

    (@ayeaaron)


    Hi,

    At https://ckeg.net/ I am getting a line around the logo that shouldn’t be there. Anyone know where i fix this?

    Also, I am getting a lot of extra text in my side bar that shouldn’t be there. And when I click on ADMIN in the sidebar I would like the white of the body to move down with it.

    Thanks,

    Aaron

Viewing 5 replies - 16 through 20 (of 20 total)
  • Thread Starter AyeAaron

    (@ayeaaron)

    Ok, I took some code out. Does it look like some of that extra stuff is gone now?

    Thank you,

    Aaron

    In the css, there is:

    #menu ul {
        clear: left;
        float: right;
        list-style: none outside none;
        margin: 0;
        padding: 2px 0;
        width: auto;
    }

    first, alter it to read:

    #menu ul {
        list-style: none outside none;
        margin: 0;
        padding: 2px 0;
        width: auto;
    }

    and see if this corrects the problem.
    If not, it may have to be:

    #menu ul {
        float: left;
        list-style: none outside none;
        margin: 0;
        padding: 2px 0;
        width: auto;
    }

    Thread Starter AyeAaron

    (@ayeaaron)

    That worked for me, but my client is still saying he is seeing the sidebar text over the middle of the page. I see this when I test against browsers previous to IE 8. And when that’s not happening, I see that some of the sidebar text is either repeated or doubled.

    Thanks for all your help,

    Aaron

    Thread Starter AyeAaron

    (@ayeaaron)

    I took out some code in the sidebar and the client says it’s improved.

    My new problem is that in IE 9 the white color of the body is extending further than it should be. Can you have a look at it in IE9 vs. Chrome and Firefox, please?

    Thanks,

    Aaron

    Thread Starter AyeAaron

    (@ayeaaron)

    Thanks.

Viewing 5 replies - 16 through 20 (of 20 total)
  • The topic ‘Mystery Line around Logo, etc.’ is closed to new replies.