
some of the requirements for the "sticky footer" stuff ended up giving the page some extra height, which I couldn't seem to get rid of, so instead I just gave it a smaller, prettier scroll bar since it was gonna be there anyway
also, a 4000x4000 pixel background image is absurd
you can choose to ignore all of this, keep it and build on it yourself, or just pick what you want out of it, I honestly don't really care
I might reconsider the color of the welcome text. I kind of like it that color, but I also liked it white, so idk. and there should be a little more space between it and the image, but I didn't think about it before taking the screenshot and at that point I wasn't willing to put in the effort to change it and take another screenshot
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<title>xSetrox</title>
</head>
<body>
<main>
<a href="https://www.youtube.com/watch?v=enMReCEcHiM"><img src="images/planet.png" id="logo"></a>
<div id="welcome"><p>Hello! Welcome to my new website, xSetrox!</p></div>
<div class="push"></div>
</main>
<footer>
<a href="http://sicaida.deviantart.com/art/Low-Poly-Planet-339431107">Art source</a> |
<a href="http://ryanfait.com/html5-sticky-footer/">Sticky footer</a> |
<a href="http://meyerweb.com/eric/tools/css/res/">CSS reset</a>
</footer>
</body>
</html>
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* That's the end of the reset. */
html {
height: 100%;
}
body {
background-image: url(images/bg.png);
background-repeat: repeat;
font-family: Verdana, Geneva, sans-serif;
color: #FFFFFF;
font-size: 12px;
height: 100%;
}
a:link {
color: #A7D1E6;
text-decoration: none;
}
a:hover {
color: #FFFFFF;
text-decoration: underline;
}
a:visited {
color: #36426F;
text-decoration: none;
}
#logo {
display: block;
margin: auto;
}
#welcome {
text-align: center;
font-size: 24px;
color: #AB1846;
}
main {
min-height: 100%;
padding-top: 25px;
margin: 0 auto -50px;
}
footer {
position: fixed;
height: 50px;
width: 100%;
text-align: center;
}
.push {
height: 50px;
}
::-webkit-scrollbar {
background-color: #181849;
width: 6px;
height: 6px;
}
::-webkit-scrollbar-thumb {
background-color: #A7D1E6;
}
and here's your background image, in a more reasonable 1000x1000 pixels
http://i.imgur.com/FbEdoSj.pngedit: I forgot for a second. this is just my personal opinion, and if you really wanna keep it your way go ahead, but I think capital letters in URLs are incredibly ugly. so I changed the capital "I" in the two image links you had to a lowercase one
your options would be to either A: change the links back
or B: assuming it's hosted on a linux server (it probably is), change the name of the folder the images are in to a lowercase i and keep the links like I have them
edit again: I just noticed this, in the thread title, "it's" should be "its"