Page 1 of 1

How to put a message on the home page

Posted: 2022-12-30 17:22
by pasbonte
Hello
How to put a message on the home page and only on this one, I went through HEADER-EXTRA and of course I have the message on all my pages.
merci !

Re: How to put a message on the home page

Posted: 2022-12-30 18:09
by jfischer
Hello

Replace this script in footer-extras.php and things like "your background", "your logo" with your pictures or your email address.

LG Joseph


Code: Select all

<?php
	$script_name = basename($_SERVER['PHP_SELF']);
	if($script_name == 'index.php' && isset($_GET['signIn'])){
		?>
		<style>
			body{
				background: url("images/your background.jpg") no-repeat fixed center center / cover;
			}
		</style>
		
		<div class="alert alert-success" id="benefits">
			<img src="./images/your_logo.png" alt="Logo">
			<br><br>
			<h4><b>Dein Titel</b></h4>
			Dein Text<br>
			<a href="mailto:your email address">Mailadresse</a>
		</div>
		
		<script>
			$j(function(){
				$j('#benefits').appendTo('#login_splash');
			})
		</script>

		
<?php
	}
?>

Re: How to put a message on the home page

Posted: 2022-12-31 10:40
by pasbonte
perfect !

merci beaucoup !