How do I make a wordpress theme full width?

后端 未结 5 926
萌比男神i
萌比男神i 2021-01-26 12:21

I tried my best but I couldn\'t make the following theme full width/screen by editing the CSS. I\'d be very much grateful if you could show me or give me a hint regarding this c

5条回答
  •  無奈伤痛
    2021-01-26 13:16

    do the following change in responsive.css file

    .main-container {
        /** max-width: 96% replace this with bellow  */
        max-width: 100%;
    }
    

    remove these styles from style.css file

    .main-container{
        width: 1170px;
    }
    .container{
        max-width: 1170px;
    }
    .primary-navigation {
        max-width: 1170px;
    }
    

    Then your site will work full-width

提交回复
热议问题