Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am having a hard time figuring out what's going on with a theme for a new script that i just bought.

My site is azngirls.com (don't worry it's not pornographic hahah) and if you go to the frontpage you will see that there is a nav bar on top or header bar that shows Login - Register (Forgot Password) and etc. and that bar is supposed to be on top without any gap but if you go to other parts of the site like for example http://azngirls.com/tos - you will see that there is a gap between that nav bar and the actual top of the website which makes it look awkward when you scroll down. This problem occurs everytime i edit the smallest things inside the php file, as in even if i change a single word or letter it suddenly shows that gap.

Another problem that I am having is that on the same page - on the side bar to the right there is a "Show me" button for Browser Plugins but when i click the link it takes me to a 404 page, but when i click the Tools link in the footer menu it takes me to a page that works.

Thanks alot for any help you guys can give! Really appreciate it!

share|improve this question
2  
You can hire a freelancer to fix your website for about $50. If you have a problem with finding a solution yourself, that's a reason to ask on SO. – Blender May 19 '12 at 6:43

3 Answers

you have a huge empty line filled with whitespace between <body> and <meta> tags. and you included a <meta> tag inside a body, as it should be in the <head> tag.

share|improve this answer
I don't sdee any meta tags inside <body> can you show me which one you are referring to? They seem to be all in <head> for me. – EW Cards May 19 '12 at 7:42
Use your browser's (Firefox/Chrome/Safari) DOM inspector instead of checking syntax yourself. You will see how bad it is. – xiaoyi May 19 '12 at 7:45

As @tpaksu suggested, your html is totally messed up. And there is a easy fix to your problem, just add the following code to your style sheet.

.content-infobox {
  top: 0;
}
share|improve this answer
I am having a problem trying to fix it myself, i did not just come here without trying to fix it myself. Thanks for the help xiaoyi. I am still working on how to fix the links. – EW Cards May 19 '12 at 7:39

use this code on the respective ID

 #id{ 
        margin:0px;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.