Space inbetween tables in HTML?
Go to solution
Solved by JamieF,
Bump...
The problem is with the <ul> tag. You didn't put them inside the table column.
<ul><td><li><p>example text goes here</p></li></td></ul>
^ was your code.
<td><ul><li><p>example text</p></li></ul></td>
^ Should work.
I'm sure somebody can give a full explanation to why it didn't work ![]()
Edit: also on this line
<td><img src="images/header.png"/><td>
The / should be in the td tag not the image one.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now