Home Forums Theme support Skyline Footer Menu in Second Footer Section

This topic contains 3 replies, has 2 voices, and was last updated by  7Theme Support 10 years, 9 months ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • Hello,

    I’m trying to use my footer menu in the Theme Settings “Second Footer Section”. I have a copyright notice on the left side and the footer menu appears on the right side. There’s plenty of real estate for the menu to display on a single line, but it wraps. Is there any way to adjust this so it doesn’t wrap? Also, I’d like to change the font color to black for the menu that appears in the second footer section but can’t seem to find where to change the color.

    Any/all guidance appreciated!

    Many Thanks!

    Hi,

    each of the columns in the second footer are 50% width. The only way to fix the problem is to make it 100% widht. If you want, you can try it. Go to WordPress admin -> Appearance -> Theme Options -> General -> Extra Css Content and add this:

    #secondfooter .one_half, #secondfooter .one_half_last {
    float: none !important;
    width: 100% !important;
    }

    For the link color in the footer is no option, but you can add to the “Extra CSS Content” ( see above ) this CSS code:

    #secondfooter a {
    color:red !important;
    }

    Just replace “red” with the color or hex color code ( i.e. #4429dc ) of your choice

    Thank you for the information. This definitely helped! What I’m seeing now is my copyright on the left side of the second footer and the footer menu on the right side, but a line below the copyright notice. What I’m hoping is to see the following centered across the second footer rather than on either side. The footer menu above and the copyright notice below with an additional blank line between.

    Home Listings Our Team Services News and Information Contact Us

    Copyright © 2014 XYZ Company All Rights Reserved

    Any/all help appreciated!

    Many Thanks!

    Hi, you can use this code:

    #secondfooter .one_half, #secondfooter .one_half_last {
    float: none !important;
    width: 100% !important;
    text-align:center;
    }
    #secondfooter #footer-menu {
    text-align: center;
    margin-top: 10px;
    }

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.