Question: hi im doing a website for a class and on one of the pages i added a baclground image but it keets moving my taskbar.
hi im doing a website for a class and on one of the pages i added a baclground image but it keets moving my taskbar. please help.
Welcome Vault Dweller To Reclemation Day!!!
Subscribe for game updates
**CSS
/* styling for the head class which is above the nav bar*/ .head{ border-style: solid; text-align: center; background-color: rgb(50, 88, 134); } /* styling for the font in the header class*/ .header{ font-family: Brush Script MT; color: rgb(254, 242, 101); } /* styling for the unordered list*/ .nav_bar ul{ background-color: rgb(50, 88, 134); color: rgb(254, 242, 101); margin: 0; padding: 0; /* gets rid of bullet points*/ list-style-type: none; /* this allows the background color to show*/ overflow: hidden; border: solid black; } /* this styling gave the black border around navigation tabs*/ .nav_tab{ border-right: solid black; float: left; font-variant: small-caps; color: rgb(254, 242, 101); padding: 14px 25px; } /* styling for the images that can be enlarged on gallery page*/ .thumbnails img {
height: 80px;
border: 4px solid #555;
padding: 1px;
margin: 0 10px 10px 0;
} /* this gives border to images on gallery page*/ .thumbnails img:hover {
border: 4px solid #00ccff;
cursor:pointer;
} /* styiling to put padding between immage gallery and the one enlarged*/ .thumbnails{ padding:10px; } /* styling for enlarged image*/ .preview img {
border: 4px solid #444;
padding: 1px;
width: 800px;
}
.home{ background-image: url("home-image.jpg"); background-position: top; background-repeat: no-repeat; background-size: cover; position: fixed; }
.sign-up{ background-image: url("sign-up-image.jpg"); background-position: top; background-repeat: no-repeat; background-size: cover; position: fixed; }
**PHP
$email=$_POST["email"];
echo "Thank You For Joining Our Newsletter"; } ?>
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
