I removed the appointment way plugin and also the hour and google map sections on the right handside of the homepage. So my entire right hand side has allot of open space. How do i center the entire page content from the Slider down to testimonials.
Hello, Go to front-page.php present in your theme directory and remove code from line 267 to 319. also follow the instruction as shown in image given below Now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .flexslider .slides li img{ width:100%; } .flexslider{ width:100%; } .featurebox .featurebox_desc{ width:31%; } @media only screen and (max-width: 960px) and (min-width: 767px){ .featurebox .featurebox_desc { width: 189px!important; margin-right: 54px!important; } } @media only screen and (max-width: 767px) and (min-width: 480px){ .featurebox .featurebox_desc { width: 217px!important; margin-right: 29px!important; } } @media only screen and (max-width: 480px){ .featurebox .featurebox_desc { width: 275px!important; margin-right: 29px!important; } } This will solve your issue.