PDA

View Full Version : Adding Text Under SmugMug NavBar


MatthewDavis
Feb-18-2010, 08:54 AM
How do I add a line of text under my SmugMug NavBar? I would like the line to be Centered in alignment. Is there a CSS code to accomplish this?

Example: Images are Orderable on Canvas or Paper Through Shopping Cart. Also available for bulk NoteCards orders or Commercial Licenses

see http://www.MatthewDavisImages.com

DHamm

denisegoldberg
Feb-19-2010, 04:42 AM
You can add text and/or html under the navbar entries in your header.

If you want to format the text you will need to add some CSS to do the formatting, then reference that div.

For example:

CSS:

#myHeaderText {
font-family: Verdana, Arial;
font-size: 110%;
text-align: center;
}


In your header:

<div id="myHeaderText">
your text here
</div>
--- Denise