I asked a question earlier on somewhere I was stuck and it was solved. Now because I'm a beginner and don't have the money to buy tutorials and all I will be teaching myself and asking frequent questions here. Now my question is on my page is how do I make buttons on the right hand side of my page only where the white section is and how do I modify those buttons? Note that the black on the header and the footer are my basic borders and the white space is where I'm going to put all my website information (this is for my IT coursework so it's basic). Now when I press a button how do I make the information only on the white space transition to the next part of the website? E.g. Say I click a button called "Info" - I want the page I'm currently on to transit to that say the page slides or what not and I only want this to happen on the white section of the page. Here is my code:
I will be so grateful for anyone who goes out their way to help me in this process. and also I'm confused to as why the footer won't appear exactly the same as the top banner.
html {
font-family: volkorn;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
.top-section {
padding: 30px 0;
margin-bottom: 0;
color: #000000;
background-color: #000000;
background-size: cover;
}
.top-section {
padding-top: 100px;
padding-bottom: 100px;
}
.bottom-banner {
padding: 30px 0;
margin-bottom: 0;
color: #000000
background-color: #000000;
background-size: cover;
}
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html class="ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]> <html class="ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]> <html class="ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html lang="en"> <!--<![endif]-->
<title>Upload Festival</title>
<head>
<!--css-->
<link href="css/customization.css" rel="custom" style="text/css">
</head>
<body class="index">
<header class="top-section" role="banner"></header>
<div class="bottom-banner">
</div>
</body>
</html>