Footer Issues and Center Section on Homepage

Discussion in 'Cloriato WordPress Theme' started by jessicalynn83, Feb 21, 2014.

  1. jessicalynn83

    jessicalynn83 Member

    Joined:
    Oct 18, 2012
    Messages:
    67
    Likes Received:
    1
    Location:
    NE Chicago Suburbs
    Hello!

    I have some questions about the front page of the theme:

    1) Is it possible to remove the center section [in purple] entirely? With a bit of code tinkering, thanks to another thread here, I was able to solve this one myself! :) If it helps anyone else, I used the following code in Styling Options:

    Code:
    .home_content .home_text p {
    display: none;
    }
    .home_content h1 {
    display: none;
    }
    2) I can't not remember how to make the bottom of my footer [in blue] smaller. I know I've done it before, but I cannot find the code.

    3) The text on the left side of my footer appears to be white - unlike the default gray on the right - could you please instruct me on how to fix it?

    Thank you very much,
    Jessica Zimmer

    www.jessicazimmer.com
     

    Attached Files:

  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. To remove bottom space from the footer section, you can paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .footer-content .footer-glow {
    display: none;
    } 
    2. For footer widget text issue, paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .footer_wrapper .footer .footer_widget .widget_inner h3 {
    color: red;
    }
    .footer div.textwidget {
    color: red;
    }
    .footer, .footer a {
    color: red;
    }
    .footer div.textwidget b {
    color: red;
    } 
    In place "red" you can put your color or color code.
     
  3. jessicalynn83

    jessicalynn83 Member

    Joined:
    Oct 18, 2012
    Messages:
    67
    Likes Received:
    1
    Location:
    NE Chicago Suburbs
    Piyush,

    Thank you so much for your help.

    Is there a similar code to adjust the top spacing of the footer?

    Sincerely,
    Jessica
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .footer-content .footer_wrap {
    padding-top: 5px;
    } 
    You can change the value of "padding-top" as per your requirement.
    This will solve your issue.
     
  5. jessicalynn83

    jessicalynn83 Member

    Joined:
    Oct 18, 2012
    Messages:
    67
    Likes Received:
    1
    Location:
    NE Chicago Suburbs
    Piyush,

    Thank you, that worked perfectly! If I have other questions, should I start a new thread?

    Best wishes,
    Jessica
     
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello Jessica,

    Yes, you can create your separate threads while asking technical issues.
    It will easier for us that way to provide you precise and on time support.
     

Share This Page