branding
The branding element will dynamically insert the site's logo, name and tagline.
The site logo will be inserted if one has been uploaded in the site's Main Settings. When a logo is used, the site name is automatically hidden using the 'hide' style class. If no logo has been defined, the site name will appear as usual. If a tagline is also defined, it will appear below the logo/name.
This element is intended for use in reusable layouts. Custom web site designs may include this branding information in their design.
CODE
<cfinclude template="#include#/branding.cfm">
CSS
/* --- Branding --- */
#branding
#logo
#siteName
#siteTagline
HTML
<a href="#">
<img src="images/logo.gif" id="logo" alt="My Site Name" />
<span id="siteName" class="hide">My Site Name</span>
/a>
<p id="siteTagline">My Site's Tagline</p>


