Hello,
I want to be able to set my homepage as full width with the remainder of my website as boxed. I have achieved this in the past with another site I built via wordpress (but was not using the Dante Framework). Is there a similar code in the PHP I would be able to change with Dante to make this happen?
—Example code I changed before
This code was changed in the header.pho of the other site that I was able to make the front page full width and boxed elsewhere
$style = $avia_config[‘box_class’];
and change it to
$style = $avia_config[‘box_class’];
if(is_home() || is_front_page()) $style = ‘boxed’;