badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

How to Add Footer Content

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #77216
    100offdeal
    Participant

    Hi, I am using your theme It is really good. but I have 1 question how should I add footer content on my homepage and category page.
    Like this

    #77278

    Hi @100offdeal,

    You can use Text Widget on first footer column to show those type of content and Can make the first Column to full width and hide the other 3 footer column widget section by adding Custom CSS code.

    Thanks

    #77317
    100offdeal
    Participant

    Thanks for your instant reply, but as my site have 50+ category page so I need to add separate widget for every category page.
    and could you plz provide css code for making it full width and hide other two footer column.

    #77351

    Please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.

    @media (min-width: 992px) {
    	.site-footer .widget-area .col-lg-3:not(:first-child) {
    		-ms-flex: 0 0 33.33%;
    		flex: 0 0 33.33%;
    		max-width: 33.33%;
    	}
    }
    @media (min-width: 768px) {
    	.site-footer .widget-area .col-lg-3:first-child {
    		-ms-flex: 0 0 100%;
    		flex: 0 0 100%;
    		max-width: 100%;
    	}	
    }

    The above code will make the first column to full width and other 3 columns are made to 33.33% which will be equally fit down to full width to show other widgets as well.

    Thanks

    #77367
    100offdeal
    Participant

    Thank You very much for your support. I am looking for this solution from 2 months. thank you once again.

    #77402

    Welcome anytime @100offdeal

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.