Hi, When you write your first CSS and browse the file on your hard drive it works fine. But after loading it to RootsWeb it fails. The answer is that the RootsWeb masthead uses its own CSS which over-rides your CSS in some cases. Do this: create a #whatever in your style, then use <div id="whatever"> in the body of your code. Like this: <html> <head> <style type="text/css"> #mybody { margin-left:40px; } </style> </head> <body> <div id="mybody"> <p>Now the body of your page will indent 40px.</p> </div> <!-- close the mybody div --> </body> </html> Thanks to: Pat Geary http://www.genealogy-web-creations.com/ George
Cool, George and Pat Thanks! Gloria On Dec 21, 2009, at 9:13 AM, George Waller wrote: > Hi, > > When you write your first CSS and browse the file on your > hard drive it works fine. But after loading it to RootsWeb > it fails. > > The answer is that the RootsWeb masthead uses its own > CSS which over-rides your CSS in some cases. Do this: > create a #whatever in your style, then use > <div id="whatever"> in the body of your code. > > Like this: > > <html> > <head> > <style type="text/css"> > #mybody > { margin-left:40px; } > </style> > </head> > <body> > <div id="mybody"> > <p>Now the body of your page will indent 40px.</p> > </div> <!-- close the mybody div --> > </body> > </html> > > Thanks to: Pat Geary > http://www.genealogy-web-creations.com/ > > George > > > > > ------------------------------- > To unsubscribe from the list, please send an email to ROOTSWEB-HELP-request@rootsweb.com > with the word 'unsubscribe' without the quotes in the subject and > the body of the message