Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Div top problem 1

Status
Not open for further replies.
I am quite unsure what I am more cofused by: your explanation or the page you're pointing to. What is it you're trying to do and what is not working the way you want it to work?
 
I am sorry for the bad description of my problem.

I have to white table and I want those two table to be at
the same height.

The first table that is okay where it is.
Hope you understand what I mean now

George
 
It is now validated.
Could anyone please help me with my problem?

George
 
adding a [tt]float: left;[/tt] style to your "test" class helped a little. there are still other anomalies, but based on the information you've provided, i can't be much more help. maybe someone else can, though.



*cLFlaVA
----------------------------
[tt]( <P> <B>)13 * (<P> <.</B>)[/tt]

[URL unfurl="true"]http://www.coryarthus.com/[/url]
 
maybe a screen shot of what you expect it to look like. you have a table within a table that may be causing the inconsitencies you're seeing. i'm sure we've said before that most of us do not condone table-based layouts - that css is definitely the best route to take. you are beginning to go the css-route, which is good, but stepping completely away from table-based layouts will be even better.



*cLFlaVA
----------------------------
[tt]( <P> <B>)13 * (<P> <.</B>)[/tt]

[URL unfurl="true"]http://www.coryarthus.com/[/url]
 
you are assigning a 5px top and bottom margin to your larger table:

Code:
<table style="[red]margin: 5px auto 5px auto; [/red]width: 600px;" border="0" cellpadding="0" cellspacing="0">

the 5 pix is pushing it down a bit. try this:

Code:
<table style="margin: auto; width: 600px;" border="0" cellpadding="0" cellspacing="0">



*cLFlaVA
----------------------------
[tt]( <P> <B>)13 * (<P> <.</B>)[/tt]

[URL unfurl="true"]http://www.coryarthus.com/[/url]
 
cLFlaVA, thanks for help.
I done coding my webshop but the design is really bad.
So I thought I will try to make the design a little better.

Now I can sleep a little better.

Thanks alot cLFlaVA.

George
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top