Make wordpress text box full width

Hi, on my website there are 3 boxes that came with the theme (minamaze) that are on the homepage. I want to take the one in the middle and the one on the right out and make the first one stretch across the width of the page. Can someone help me with this??? Maybe a custom css command I can’t find… :frowning:

Could you please post a link to your site, so that we can see which theme you are using, and what the source code looks like?

troide.co

theme is minamaze

thank you :smiley:

Hi,

I’m not a wordpress user so you probably have some custom way to control your themes but you could do what you want by adding the following css to your custom css file.

#section-home-inner .section2.one_third,
#section-home-inner .section3.one_third {display:none}
#section-home-inner .section1.one_third{
display:block;
float:none;
margin:0 0 20px;
width:auto;
}

However, I’m guessing there probably is a better way via your CMS :slight_smile:

1 Like

That worked, thanks a lot :slight_smile:

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.