Okay
  Public Ticket #2410281
How to edit footer before area
Closed

Comments

  • Sanwal started the conversation

    Hi,

    There How to edit jelyco theme before footer area where footer logo and social links appear? There is no option for that in Appearances>>Widgets.

  • Sanwal replied

    Ok I got it there is an option to edit that in Customization>>Theme meta option>>Social Buttons. But I am unable to remove theme from there if I delete and Publish it again then the social icons come back and are not deleted/removed.

  •  1,626
    Andrey replied

    Hello, Dear Sanwal!

    Thank you for this question.  In order to change these details - please click WP Dashboard => Appearance => Customize => Theme Meta: http://prntscr.com/rdq49i 

    http://prntscr.com/skdasf

    Change all necessary information and save changes. Best Regards!

  • Sanwal replied

    Ok I got it there is an option to edit that in Customization>>Theme meta option>>Social Buttons. But I am unable to remove theme from there if I delete and Publish it again then the social icons come back and are not deleted/removed.

  •  1,626
    Andrey replied

    Hello, Sanwal!

    In this case it's possible to hide this section via css code. 

    For example, please click WP Dashboard => Appearance => Customize => Additional CSS and paste this code here:

    .footer_before {
        display: none;
    }
    

    Save changes and you'll receive this result: http://prntscr.com/skk4sy

    If you want to hide only icons inside this section, use this css code:

    .footer_before .social-icons {
        display: none;
    }
    

    Save changes and you'll receive this result: http://prntscr.com/skk6fn

    Best Regards!

  • Sanwal replied

    Thank you for the assistance. Have a good day!