How do I make a wordpress theme full width?

后端 未结 5 895
萌比男神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 12:54

    Replace the following styles and that will do it

    Style.css line 305

    .primary-navigation {
    display: block;
    float: left;
    width: 100%;
    text-align: left;
    }
    

    Style.css line 174

    #page, .container {
    max-width: 100%;
    min-width: 240px;
    }
    

    Responsive.css line 63

    .main-container {
    max-width: 100%;
    }
    

提交回复
热议问题