Dashboard > SmugMug > Home > Customization > HTML Help
Log In   View a printable version of the current page.
SmugMug
HTML Help
Added by Ivar Borst , last edited by Anonymous on Apr 25, 2008  (view change)
Labels: 
(None)

  • Adding HTML is supported in your Bio, Header, Footer, Album Descriptions, and Captions.  When adding HTML, be sure that you've got everything sandwiched between <html> and </html> tags.  A common cause of a "broken page" or "broken site" is the failure to close your HTML tags, the biggest problems are usually caused by forgetting to close a <div> with a closing </div>
  • We do not recommend use of Frontpage or other HTML generator code.  It usually causes more trouble than it's worth.  A great resource is right on SmugMug: Check out Anne's Quick HTML Tips!
  • Many of you have learned to use <font> tags and color tags in HTML.  They work, but they are hard to maintain and error prone.  Consider using some very basic CSS instead.  Say for example you wanted to fancify a paragraph in an album description.  Just do this:
    <div id="myparagraph1">And here is all your text...blah blah blah...</div>
    Now, use CSS to style that text.
    #myparagraph1 {text-align: justify; color: red; font-size: 20px;}
    This is an example.  This CSS goes in your CSS box of your customization panel.
    
  • 
    


Want a great reference?  W3Schools HTML Guide

Powered by Atlassian Confluence 2.7.1, the Enterprise Wiki. Bug/feature request - Atlassian news - Contact administrators