Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Max Bond

    (@max-bond)

    Hi!

    You have problems with styles.
    Theme layout styles … hm … are not optimal! )

    How to fix.

    custom-styles.css line 378:

    #container {
    padding-left: 215px;
    padding-right: 0px;
    }

    change to:

    #container {
    width: 950px;
    padding-right: 0px;
    }

    custom-styles.css line 379:
    #main-col { width: 100%; }
    change to (comment line):
    /* #main-col { width: 100%; } */

    custom-styles.css line 398:

    #sidebar-shell-1 {
    margin-left: -100%;
    margin-right: 15px;
    left: auto;
    right: 215px;
    }

    change to (comment all):

    /* #sidebar-shell-1 {
    margin-left: -100%;
    margin-right: 15px;
    left: auto;
    right: 215px;
    } */

    style.css line 362:

    #main-col {
    width: 725px;
    float: left;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    }

    change to (float: right):

    #main-col {
    width: 725px;
    float: right;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    }

    Don’t forget to make backup of files before changing them!

    I am having exactly the same issue as described above, but am using the theme U-Design. Any chance you can assist here too?
    Page with issue – Chrome only problem – https://hcc-youth.com/ministries/

    Thanks in advance!

    Plugin Contributor Max Bond

    (@max-bond)

    ggerber!
    Hm… Try to use right sidebar instead of the left.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Widget jumps to content center in Chrome’ is closed to new replies.