Hello everyone,
This is my first post and I hope that you guys can help me understand my issues. I am pretty new to creating a website with CSS and I have an issue of my footer @.... coming out of my container. Here is the code:
<div id="footer">
<h5> SIGN UP TO RECEIVE EMAIL></h5>
<form class="newemail">
Name: <input type="text" name="firstname"/>
Email: <input type="text" name="mail"/>
<input type="submit" value="send"/>
</form>
<p class="foot"> © IZDALIA / All Rights Reserved </p>
</div>
The p class="foot" is coming out of my container when the page is being minimized. The css for this is:
.foot {
align: center;
position:relative;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
letter-spacing: 0.15em;
right: 200px;
top: 20px;
}
Another issue I am having is that my form area is getting way bigger as well when the page is minimized and looks awkward and unproportional compared to the rest of the items. Is there a way to fix the form area to be small as well? I appreciate all the answers and any help offered!
Thanks!