Hello,
I have a copy of the template-blank.php in my child theme. I want to use it to create landing pages. I am having difficulty getting rid of the background image that I have set for the rest of the site. I have some styles set that can make background color white, but the background image show through on page load.
Thanks
Todd
yup
https://www.geistinteractive.com/barcode-creator-file-lander/
it doesn’t always show, but sometimes, especially on mobile devices it does.
Thanks
Todd
Hey!
In WordPress dashboard, please go to Appearance > Editor and open Header.php file and find following line
<html <?php language_attributes(); ?> class="<?php echo " html_$style ".$responsive." ".$headerS;?> ">
and change it to
<html <?php language_attributes(); ?> class="<?php echo " html_$style ".$responsive." ".$headerS;?> " style="<?php if(is_page(3513)) { echo 'background: none;'; } ?>">
Best regards,
Yigit
Thank you !
Todd