minidiapolis
May 20 2008, 06:55 PM
On www.fountainchurch.org/test.html why isn't there space between the text and the pictures. I thought using margin-top would do the trick
pandy
May 20 2008, 07:15 PM
Why don't you validate?
http://www.htmlhelp.com/cgi-bin/validate.c...s&input=yesThis is all mumbo jumbo.
CODE
<table width = 100%; margin-top : 50%>
You can't just drop CSS in a tag like that. You must put it in a style attribute. Both values should be quoted, "100%" too.
Frederiek
May 21 2008, 02:38 AM
Setting the margin-top on the table to 50% pushes the table practically off screen. Use another percentage or unit.
Or give the div containing the text a bottom margin, eg. <div style="width: 80%; margin:0 auto 50px auto;">.