• I am getting a weird beige line through the title of my menu in my sidebar. I have used developer tools to try and isolate what is causing the beige line. The best I can do is move it to the bottom of the page. When I on toggle the position attribute it moves the line the bottom. But I still can’t figure out what is creating the lines to begin with.

    Here is a link to the page that you have to use Internet Explorer to see the issue.I know Internet Explorer is dated, but that is the browser the school predominantly uses.

    https://www.stimadesigns.com/Elysian/?page_id=169

Viewing 2 replies - 1 through 2 (of 2 total)
  • it looks like .widgetitlte::after has a background color of #ccc

    find this in your css:

    .widget-area .widget-title::after {
    content: “”;
    position: absolute;
    bottom: 9px; <– change to zero
    left: 0;
    right: 0;
    height: 4px; <– change to zero
    background-color: #CCC;
    }

    Thread Starter astima

    (@astima)

    Thank you. In the CSS inspector the background color was crossed out, so I thought that meant it was not affecting anything on the site.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Internet Explorer CSS issues’ is closed to new replies.