How do I change the background of every page with an image with the exception of the home page? Thank you
Hello, For this you need to follow two steps. Step-1: Replace <body> tag from header.php with this code PHP: <body <?php body_class(); ?>> Follow below image. Step-2: Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .home { background: none; } body { background: url(../../images/header-bg-green.png) repeat #0057A4; } Adjust color or image according to your requirement. Thanks & Regards Pramod