Quickfix Code Library

A library of quickfix code to support the problem areas of the original Frontsteps theme series.

This code supports the following themes:

Blanco Breeze, Bluebird Day, Citrus Pop, Desert Sky, Euro Contempo, Irish Morning, Modern Pro, PMP Template, Pumpkin Spice, Summer Vibes & Urban Chic

Gallery – Display Fix

/* Gallery Display Fix */
img.rsImg {
    height: auto !important;
    width: 100% !important;
}

Header – Logo Fix

/*Header Logo Fix */
.custom-logo-link img {
    height: 53px;
    width: auto;
}

@media only screen and (max-width : 991px) {
    .custom-logo-link img {
        height: 36px;
        width: auto;
    }
}

@media only screen and (max-width : 490px) {
    .custom-logo-link img {
        height: 28px !important;
        width: auto !important;
    }
}

Header – Text Background: Transparent

/* Header Text Background Transparent */
.section-hero .hero-block {
    background-color: transparent;
}

Header – [Homepage] – Font Size

/* Header: Homepage - Font Size */
.hero-block > .h1 {
    font-size: 50px !important;
}

Header – [Pages] – Font Size

/* Header: Pages - Font Size */
.section-hero h2 {
    font-size: 50px;
}

Footer – [Accreditation] – Center Images

/* Centers Footer Accreditation Images */
.slick-slide img {
    margin: 0 auto;
}

(Feature Fix) Dropdown Menu – Scrolling Option

/* Feature Fix - Dropdown Menu - Scrolling Option */
.dropdown-menu {
    height: 300px;
    overflow: auto;
}

CREDIT: The feature fix above was provided by Implementation Coordinator, Roman Hoffmann

(Change) Login – Border Color

/* Change Login Border Color */
#header .container .right-column ul li.login a {
    border: 1px solid #ff69b4;
}

(Change) Login – Background: Hover Color

/* Change Login Background: Hover Color */
#header .container .navigation-column .navbar-default .navbar-nav li.dropdown .dropdown-menu li a:hover {
    background: #ff69b4;
}

(Change) Dropdown Menu – Background: Hover Color

/* Change Dropdown Menu Background: Hover Color */
#header .container .navigation-column .navbar-default .navbar-nav li.dropdown .dropdown-menu li a:hover {
    background: #ff69b4;
}

(Change) Mobile Menu Bar – Color

/* Change Mobile Menu Bar Color */
.navbar-header .navbar-toggle .icon-bar {
    background: #ff69b4;
}

(Change) Find Community [Pop-up Menu] – Background Color

/* Change - Find Community Pop-up Menu - Background Color */
.modal-team .modal-dialog .modal-content {
    background: #ff69b4 !important;
}

[Hide] Header – Text

/* Hide Header Text */
.section .section-hero {
    display: none;
}

[Hide] Slider Gallery – Captions

/* Hide Slider Gallery Captions */
.rsGCaption {
    display: none;
}

[Hide] Slider Gallery – Captions Background

/* Hide Slider Gallery Captions Background */
.rsDefault .rsGCaption {
    background: transparent;
}

Gravity Forms – Display Checkbox Labels

/* Gravity Forms - Display Checkbox Labels */
.gform_wrapper ul.gfield_checkbox li label {
    display: inline-block !important;
}

Gravity Forms – Display Radio Buttons

/* Gravity Forms - Display Radio Buttons */
ul.gfield_radio label {
    display: inline-block !important;
}

Gravity Forms – Button Styling

/* Gravity Forms - Button Styling */
.gform_footer input[type=submit] {
    border-radius: 4px;
    background: #ff69b4 !important;
    padding: 15px 40px;
    color: #ffffff !important;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

Gravity Forms – Spacing Between Input Forms

/* Gravity Forms - Spacing Between Input Forms */
.gform_wrapper .ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]) {
    margin-bottom: 10px;
}