Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #462547

    Hi,

    In the Enfold theme, i cannot figure out how to get the sidebar highlight container to extend to the edge of the page.

    Can you please help out with this?

    See attached example in this link…

    http://resoluteprivate.com.au/our-documents

    #462739

    Hi justintpea!

    It is not possible unless you use container width 100%. You can however add following code to Quick CSS in Enfold theme options under General Styling tab

    .main_color .widget_nav_menu ul:first-child>.current-menu-item, .main_color .widget_nav_menu ul:first-child>.current_page_item {
      background: #ffffff;
      background: -moz-linear-gradient(left, #ffffff 0%, #f8f8f8 100%);
      background: -webkit-gradient(linear, left top, right top, color-stop(0%,#ffffff), color-stop(100%,#f8f8f8));
      background: -webkit-linear-gradient(left, #ffffff 0%,#f8f8f8 100%);
      background: -o-linear-gradient(left, #ffffff 0%,#f8f8f8 100%);
      background: -ms-linear-gradient(left, #ffffff 0%,#f8f8f8 100%);
      background: linear-gradient(to right, #ffffff 0%,#f8f8f8 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f8f8f8',GradientType=1 );
      box-shadow: none;
    }

    and it would look like this – http://i.imgur.com/nvTK3Td.png

    Regards,
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.