you are somehow using the #container css id twice;
the second time is in the html and css structure of the content of that page;
this could possibly be the cause for the problem…
Thread Starter
Steven
(@lamsteven94)
Ah, I have this code in my edit css:
#sidebar.column.threecol {
width: 185px;
}
.column.twocol {
width: 100%;
}
#content.column.twothirdcol {
width: 900px;
}
And they’re marked with I’s on the left side of the line numbers.
I changed the names of the ids on the content page but that didnt do the trick =/
the html and CSS in the content of your page is the problem;
for some reason you are using CSS ids which are also used in your theme, and this creates an interference, and also creates invalid code;
http://validator.w3.org/check?uri=http%3A%2F%2Fslamlink.net%2Fjava%2Flab-5-card-game%2F&charset=%28detect+automatically%29&doctype=Inline&group=0
http://codex.wordpress.org/Validating_a_Website
Thread Starter
Steven
(@lamsteven94)
wow thanks! that’s a big help! Let me fix all of them and see if there are any problems still.
Thread Starter
Steven
(@lamsteven94)
is </br> an invalid end tag bar? CI use it to make a larger page break in my paragraphs. Is there a better way to do this to fix this “error”?
the linebreak tag is a self-closing tag:
<br />
http://www.w3schools.com/tags/tag_br.asp
Thread Starter
Steven
(@lamsteven94)
okay, I’ve been using </br> instead of
or
because it gives me a larger page break in my paragraphs. I fixed all the ID errors except “code_title”; is it a big problem in html to share the same ID among multiple headers?
is it a big problem in html to share the same ID among multiple headers?
this should generally not cause a problem for the formatting, unless the elements with the duplicate css ids lead to unintended layout problems.
Thread Starter
Steven
(@lamsteven94)
perfect, thanks a bunch alchymyth! I hope it stays like this now~
-Steven