Problem with homepage.

Max CR

New Member
Hi,

I had just created a website for a client. The website is www.Sportsand|SpineIC.com. Remove the |.

I am having a problem with the homepage. If it is viewed in Firefox, part of the homepage appears on the right side of the page. Any other browser displays it fine. Any ideas? How could I fix this?

I used a combination of tables and CSS that I used which could be conflicting.
 

Max CR

New Member
I am having a lot of trouble changing it. I am having trouble cause the table itself is used for spacing and width purposes. It is extremely complicated. I have been working on it for hours. could I send you the file and the CSS file to try and make the changes? THanks.
 

Phreaddee

Super Moderator
Staff member
well it shouldnt be complicated! if you've made an extremely complicated table layout, then you need to strip it back entirely.

I can see a
header
navigation
slideshow | news bar
1 | 2 | 3 divs
1 div
1 | 2 divs
footer.

11 divs inside a wrapper.

html would be something like this...
HTML:
<body>
<div id="wrapper">
  <div id="header"></div>
  <div id="nav"></div>
  <div id="slideshow"></div>
  <div id="newsbar"></div>
  <div class="content-third"></div>
  <div class="content-third"></div>
  <div class="content-third"></div>
  <div class="content-whole"></div>
  <div class="content-half"></div>
  <div class="content-half"></div>
  <div id="footer"></div>
</div>
</body>
obviously with content dropped inside...

the css styling should be pretty basic as well.
stick to the box model and you'll be fine.
its just basic maths!
 
Last edited:

Max CR

New Member
I ma having trobule with the CSS coloring as well. Could i send you what i have and where I am at right now and hopefully you can help me? Thanks.
 

Thomas

New Member
It seems like a problem with sizes and overflows. Just be careful when assigning the width and take account of any spacing or margin.
 
Top