Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • Pankaj Sharma Moderator
    #1075550

    Hi
    To change the color use this code in custom.css file

    .t3-off-canvas {
        background: #262626;
        color: #3c3c3c;
    }

    For the Menu word you can do it from header.php file
    find

    <span class="patty"></span>

    you can add text MENU in span and apply custom style code via a custom.css file on it show it as per needs.

    Regards

    ismocan Friend
    #1075678

    Hello Pankaj,

    1- Thanks for your reply. Changing Off-Canvas Menu’s Background Color is solved. But i can’t change the body color to black? And one more questşon how can i change the font-weight to bold?

    2- I couldn’t find <span class="patty"> in header.php, but i found it in off-canvas.php. I did write MENU in span, the lines are gone but i didn’t understand how to make MENU text visible through custom.css. As you can understand i’m not expert on codes.

    Regards

    Pankaj Sharma Moderator
    #1075776

    Hi
    Use the same code for BG color

    .t3-off-canvas {
        background: #262626;
        color: #3c3c3c;
    }

    For MENU
    add this code in custom.css file

    .off-canvas-toggle span {
        font-size: 12px;
        color: #000;
    }

    Save and check.

    Regards

    ismocan Friend
    #1075985

    Thank you Pankaj , it’s working now.

    And one more question;
    How can i change themenu and sub-menu title’s font-weight to bold +the color to #000000 in off-canvas menu?

    Regards


    1. menu-title-bold
    Pankaj Sharma Moderator
    #1076050

    Hi
    Add below code in custom.css file to make them bold

    .t3-off-canvas .t3-off-canvas-body .dropdown-menu > li > a {
        color: #999999;
        font-weight: bold;
    }

    Regards

    ismocan Friend
    #1076178

    Thank you Pankaj!

    Regards

    Pankaj Sharma Moderator
    #1076373

    You are welcome!

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

This topic contains 7 replies, has 2 voices, and was last updated by  Pankaj Sharma 6 years, 5 months ago.

The topic ‘How to change Off-Canvas Menu's Background Color?’ is closed to new replies.