How do i fix this?

Status
Not open for further replies.

bdistler

Well-Known Member
Prime Account
Messages
3,534
Reaction score
196
Points
63
On my "About Me" and "Contact" pages, the header is covering the nav bar.
content of your page is being put where you told it - to put it

BUT - first you should 'fix' these errors at --> [ http://validator.w3.org/check?verbose=1&uri=http://joshbrunsred.x10host.com/ ]

AND I would change...
HTML:
<table>
  <th colspan="3">My Joy</th>
TO
HTML:
<table>
  <tr>
    <th colspan="3">My Joy</th>
  </tr>


AND...
x10hosting recently implemented a different web-server-software setup on their free-hosting servers - which is a combination of the Apache web server and the Varnish cache server
the cache server maybe why there is a delay before you 'see' the file - after you upload it

staff has said - to override [ Varnish cache ] try adding the following line to your [ .htaccess ] file in folder [ public_html ]
Code:
Header set Cache-Control "max-age=0, private, no-cache, no-store, must-revalidate"
 
Last edited:

asianzon

New Member
Messages
17
Reaction score
0
Points
1
On my "About Me" and "Contact" pages, the header is covering the nav bar.

http://joshbrunsred.x10host.com/contact.html

Code:
Code:
<!DOCTYPE html>
<html>
     <head>
         <link type="text/css" rel="stylesheet" href="stylesheet.css"/>
            <title>About Me</title>       
     </head>
     <body> 
          <div id="header">
            <div id="navbar">
                 <ul>
                   <a href="http://joshbrunsred.x10host.com/"><li>Home</li></a>
                   <a href="http://joshbrunsred.x10host.com/aboutme.html"><li>About Me </li></a>
                   <a href="http://joshbrunsred.x10host.com/contact.html"><li>Contact </li></a>
                 </ul>
            </div>
            <h3>Contact</h3>
            </div>
          <div id="button">
             <p>Feel free to contact me at any time! *******@hotmail.com</p>
          </div>
      </body>
</html>
 
Status
Not open for further replies.
Top