Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #24719

    I was wondering how it’s possible to extend the light gray bar that’s behind the active page on the sidebar.

    Here’s an example: http://cl.ly/image/2i1e3H341r0j

    If you want to see the live page here’s a link: http://cl.ly/1K3i3l251p1O

    Thanks!

    – John

    #124483

    Hi,

    You mean the line below the widget title? I can’t think of any idea because the sidebar overflow is hidden so it is not possible to move elements to the left. It will break the layout when you set it to visible. It is possible if you can create a span inside the widget title and style it like a thin border, set the position to absolute. In order to do it, you need modify the default widgets on wp-includes > default-widgets.php. You need to ask someone else to do it for you.

    Regards,

    Ismael

    #124484

    Hi,

    I test this on my end. It might work.

    #top #main .sidebar {
    overflow: visible;
    width: 268px;
    }

    #top #main .sidebar_left .sidebar {
    border-right-style: solid;
    border-right-width: 2px;
    border-left: none;
    }

    #top .widgettitle {
    margin-left: -50px;
    padding-left: 50px;
    }

    Regards,

    Ismel

    #124485

    Hi Ismael,

    Thanks for trying. Unfortunately it didn’t work, created some additional lines, spacing errors etc.

    It’s ok, I don’t need it that badly. Visually it just might be something you suggest to Kriesi to adjust when he has some time. It does look a bit odd that it’s cut off on one side and the other goes all the way to the vertical edge. It sounds like it needs to be adjusted deeper in the coding of the site than it’s worth investing in right now.

    Cheers,

    – John

    #124486

    Hey,

    Weird, because when I test the code it works fine.

    Regards,

    Ismael

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Sidebar page "gray" highlight issue’ is closed to new replies.