hi there
how can i implement a background image for the whole site.
i tried the plugins “wp-backgrounds-lite” and “background-manager”
nothing works.
i just wanna have a “cover” background image.
thanks for help
h
Hey!
Try adding this code to the Quick CSS:
.page-template-template-blank-php #main, .page-template-template-blank-php #wrap_all, .page-template-template-blank-php #main, .page-template-template-blank-php .container_wrap {
background-color: transparent;
}
Cheers!
Josue
thanks josue
in the meantime the site is online with
<body id=”top” style=”background-image:url(<?php bloginfo( ‘template_url’ ); ?>-child/images/bg.jpg); background-position:center top; background-attachment:fixed; background-size:cover;” <?php body_class($style.” “.$avia_config[‘font_stack’].” “.$blank); avia_markup_helper(array(‘context’ => ‘body’)); ?>>
in the header.php of the child theme
not very elegant …