• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Customizing footer background – Minimum Pro

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password

Community Forums › Forums › Archived Forums › Design Tips and Tricks › Customizing footer background – Minimum Pro

This topic is: resolved

Tagged: background image, footer, minimum pro

  • This topic has 8 replies, 2 voices, and was last updated 11 years, 3 months ago by Davinder Singh Kainth.
Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • February 14, 2014 at 6:53 am #90266
    PrayersNApples
    Member

    I'd like to add a background image (stripes) to my footer area. I'm using Minimum Pro and I'd done it before using the Adorable theme by adding:

    background-image: url(http://sample.com) repeat;

    but when I try replacing background-color with that line of code in Minimum Pro, the footer just becomes transparent (and you can see the bottom of the main background image instead).

    Any suggestions?

    Thanks so much!

    http://www.prayersandapples.com
    February 14, 2014 at 8:32 am #90278
    Davinder Singh Kainth
    Member

    background: url (images/imagename.png) repeat-x;

    repeat-x will repeat horizontally, for vertical use repeat-y


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    February 14, 2014 at 11:31 am #90318
    PrayersNApples
    Member

    Hi Davinder,

    Thank you so much for your response! Unfortunately, I tried that and it didn't work - this is what my css looked like when I changed it:

    /*
    Footer Widgets
    ---------------------------------------------------------------------------------------------------- */
    
    .footer-widgets {
    	background: url(http://prayersandapples.com/?attachment_id=6185) repeat-x;
    	color: #999;
    }
    
    .footer-widgets .wrap {
    	border-bottom: 1px solid #444;
    	padding: 40px 0 16px;
    }
    
    .footer-widgets-1,
    .footer-widgets-2,
    .footer-widgets-3 {
    	width: 340px;
    }
    
    .footer-widgets-1 {
    	margin-right: 60px;
    }
    
    .footer-widgets-1,
    .footer-widgets-2 {
    	float: left;
    }
    
    .footer-widgets-3 {
    	float: right;
    }
    
    .footer-widgets a {
    	border-bottom: 1px dotted #fff;
    	color: #fff;
    }
    
    .footer-widgets a:hover {
    	color: #999;
    }
    
    .footer-widgets .widget {
    	margin-bottom: 40px;
    }
    
    .footer-widgets .widget-title {
    	color: #fff;
    }
    
    .footer-widgets li {
    	list-style-type: none;
    	margin-bottom: 6px;
    	word-wrap: break-word;
    }
    
    .footer-widgets .search-form input:focus {
    	border: 1px solid #ddd;
    }
    
    /*
    Site Footer
    ---------------------------------------------------------------------------------------------------- */
    
    .site-footer {
    	background: background: url(http://prayersandapples.com/?attachment_id=6185) repeat-x;
            letter-spacing: 1px;
    	padding: 60px 0;
    	text-align: center;
    }
    
    .site-footer a,
    .site-footer p {
    	color: #999;
    }
    
    .site-footer a:hover {
    	color: #fff;
    }
    
    .site-footer a {
    	border: none;
    	font-weight: 300;
    }
    
    .site-footer p {
    	font-family: 'Roboto', sans-serif;
    	font-weight: 300;
    	font-size: 14px;
    	margin-bottom: 0;
    }
    
    /*

    However, after making those changes, my homepage footer was clear (showing the bottom of the main background) and the footer on all other pages was white.

    I have since returned it to its normal settings:

    /*
    Footer Widgets
    ---------------------------------------------------------------------------------------------------- */
    
    .footer-widgets {
    	background-color: #75bdb4:
    	color: #999;
            clear: both;
    }
    
    .footer-widgets .wrap {
    	border-bottom: 1px solid #444;
    	padding: 40px 0 16px;
    }
    
    .footer-widgets-1,
    .footer-widgets-2,
    .footer-widgets-3 {
    	width: 340px;
    }
    
    .footer-widgets-1 {
    	margin-right: 60px;
    }
    
    .footer-widgets-1,
    .footer-widgets-2 {
    	float: left;
    }
    
    .footer-widgets-3 {
    	float: right;
    }
    
    .footer-widgets a {
    	border-bottom: 1px dotted #fff;
    	color: #fff;
    }
    
    .footer-widgets a:hover {
    	color: #999;
    }
    
    .footer-widgets .widget {
    	margin-bottom: 40px;
    }
    
    .footer-widgets .widget-title {
    	color: #fff;
    }
    
    .footer-widgets li {
    	list-style-type: none;
    	margin-bottom: 6px;
    	word-wrap: break-word;
    }
    
    .footer-widgets .search-form input:focus {
    	border: 1px solid #ddd;
    }
    
    /*
    Site Footer
    ---------------------------------------------------------------------------------------------------- */
    
    .site-footer {
    	background-color: #75bdb4;
            letter-spacing: 1px;
    	padding: 60px 0;
    	text-align: center;
    }
    
    .site-footer a,
    .site-footer p {
    	color: #999;
    }
    
    .site-footer a:hover {
    	color: #fff;
    }
    
    .site-footer a {
    	border: none;
    	font-weight: 300;
    }
    
    .site-footer p {
    	font-family: 'Roboto', sans-serif;
    	font-weight: 300;
    	font-size: 14px;
    	margin-bottom: 0;
    }
    

    (Note: the normal settings have a line that says "clear: both" under the site.footer section - I tried removing and keeping it; it doesn't seem to make a difference with the changes - the homepage is still clear and the others are white.)

    Any other suggestions?

    Thanks for your help!

    February 14, 2014 at 9:24 pm #90422
    Davinder Singh Kainth
    Member

    In the following code:

    /*
    Footer Widgets
    ---------------------------------------------------------------------------------------------------- */
    
    .footer-widgets {
    	background: url(http://prayersandapples.com/?attachment_id=6185) repeat-x;
    	color: #999;
    }

    Replace this "http://prayersandapples.com/?attachment_id=6185" with url of an image and then check.


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    February 14, 2014 at 9:58 pm #90430
    PrayersNApples
    Member

    I didn't realize I was copying/pasting the wrong link! Thank you so much - that worked 🙂 One more question though: the background image is still showing through after the bottom of the footer. Is there any way to delete that/get it to stop showing? You can see it here at: http://www.prayersandapples.com.

    Thank you so much for your help! 🙂

    February 14, 2014 at 10:00 pm #90431
    PrayersNApples
    Member

    (all of the other pages, besides the homepage, show white underneath the footer area - I'd like to remove this as well)

    February 14, 2014 at 10:41 pm #90436
    Davinder Singh Kainth
    Member

    The image you enter in the following code is not long enough (height wise)

    Replace this code

    .site-footer {
    	background: url(http://prayersandapples.com/wp-content/uploads/2014/02/Teal-and-White-Stripe-Border.jpg) repeat-x;
            letter-spacing: 1px;
    	padding: 60px 0;
    	text-align: center;
    }

    with this code

    .site-footer {
    	background: url(http://prayersandapples.com/wp-content/uploads/2014/02/Teal-and-White-Stripe-Border.jpg);
            letter-spacing: 1px;
    	padding: 60px 0;
    	text-align: center;
    }

    If this does not work, upload strip image which is longer height wise


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    February 15, 2014 at 7:44 am #90465
    PrayersNApples
    Member

    Both solutions worked perfect! Thanks so much for your time and patience, I really appreciate it!

    February 15, 2014 at 8:12 am #90467
    Davinder Singh Kainth
    Member

    Cool, welcome !


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

  • Author
    Posts
Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Customizing footer background – Minimum Pro’ is closed to new replies.

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2025 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble