Maelstrom Mods

This section is a reference for the typical RocketTheme template modifications I make when putting together a site. Unless otherwise noted, this code is added to the bottom of the existing CSS.

Maelstrom - Contact Us Spacing

The Contact form has a lot of white space between lines of text. This code reduces that down by removing the padding in the table.
/* TIGHTEN UP CONTACT US SPACING (TEMPLATE.CSS) */
#rt-mainbody div.rt-joomla div.contact table.rt-joomla-table td {
padding: 0;
}
#rt-mainbody div.rt-joomla div.contact table.rt-joomla-table {
padding-bottom: 0px;
}

Maelstrom - Gap Between Menu and Front Page Rotator

After reassigning RokStories as regular articles and attaching them to the menu, a gap sometimes appears between the top of the front page rotator and the menu.

/* FIX GAP ABOVE FRONT PAGE ROTATOR ON CHROME (TEMPLATE.CSS) */
#rt-body-background {
margin-top: -40px !important;
}
/* FIX GAP ABOVE FRONT PAGE ROTATOR ON IE (TEMPLATE-IEn.CSS) */
#rt-body-background {
margin-top: -75px !important;
}
/* FIX GAP ABOVE FRONT PAGE ROTATOR ON FIREFOX (TEMPLATE-GECKO.CSS) */
#rt-body-background {
margin-top: -75px !important;
}