Background image on all page AppGini 5.81
Posted: 2019-10-31 20:35
Hello
Is is a way to add background image on all page?
Thank you.
Is is a way to add background image on all page?
Thank you.
A place where AppGini users can exchange ideas and help each other.
https://forums.appgini.com:443/phpbb/
https://forums.appgini.com:443/phpbb/viewtopic.php?f=7&t=3295
Code: Select all
<style>
body {
background: url("yourimage.jpg") no-repeat fixed center center / cover;
}
</style>
Code: Select all
<?php
$script_name = basename($_SERVER['PHP_SELF']);
if($script_name == 'index.php' && isset($_GET['signIn'])){
?>
<style>
body{
background: url("hooks/logo.jpg") no-repeat fixed center center;
background-size: 60%
}
</style>
<?php
}
?>
Code: Select all
<style>
body{
background: url("hooks/logo.jpg") no-repeat fixed center center;
background-size: 60%
}
</style>