RESPONSIVE : menu left instead of right

Home Forums Jomelle WordPress Theme RESPONSIVE : menu left instead of right

This topic contains 1 reply, has 2 voices, and was last updated by  ab-themes 7 years, 10 months ago.

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

    jobijoba57
    Participant

    Hi, how change in responsive design in Jomelle change the menu icon appears on the left instead of right ?

    #17085

    ab-themes
    Keymaster

    Hello,

    you will have to change that with CSS.
    Open wp-content\themes\jomelle\css\responsive.css file and find this code:

    #ABdev_menu_toggle {
        display: block;
        height: 50px;
        width: 50px;
        color: #fff;
        position: fixed;
        right: 5px;
        top: 20px;
        font-size: 22px;
        z-index: 9999999;
        line-height: 50px;
        text-align: center;
        background: rgb(0,0,0);
        background: rgba(0,0,0,0.5);
    }

    this is the CSS code for menu toggle icon, change it like this and your icon will be on left side:

    #ABdev_menu_toggle {
        display: block;
        height: 50px;
        width: 50px;
        color: #fff;
        position: fixed;
        right: auto;
        left: 5px;
        top: 20px;
        font-size: 22px;
        z-index: 9999999;
        line-height: 50px;
        text-align: center;
        background: rgb(0,0,0);
        background: rgba(0,0,0,0.5);
    }

    This is it.

    Cheers

Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘RESPONSIVE : menu left instead of right’ is closed to new replies.