I read that front page can assign a different style sheet for just the home page. I have my custom html in the box for all users and its working well. However i would like to style the main content box different for just the home page. I looked in the docs and support requests and found no answers.

Comments

Phillip Mc’s picture

There's a number of ways of doing that:

(a) using the FULL HTML option you can point to a seperate CSS file (to your theme CSS) in the HEAD of your HTML markup

(b) Assign a unique DIV name for your main content box in your page.tpl.php file using the $is_front flag. e.g. <?php If ($is_front){ ?><div id="content-front><?php } ?> and declare your #content-front css in your theme style sheet.

Phillip Mc’s picture

Status: Active » Closed (fixed)