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*

Home page Width

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #107424
    Roberto
    Participant

    I have modify the width of my site with this code:

    
    @media (min-width: 1600px) {
    	.post-template-default .site-content .container 
    	.page-template-default:not(.woocommerce) .site-content .container {
    		max-width: 1500px !important;
    	}
    }
    @media (min-width: 1800px) {
    	.post-template-default .site-content .container 
    	.page-template-default:not(.woocommerce) .site-content .container {
    		max-width: 1700px !important;
    	}
    }
    

    but it have not effect on home page. Please help me.

    #107440
    Roberto
    Participant

    i fixed with this:

    
    @media (min-width: 1600px) {
    	.post-template-default .site-content, .container,
    	.page-template-default:not(.woocommerce) .site-content .container {
    		max-width: 1500px !important;
    	}
    }
    @media (min-width: 1800px) {
    	.post-template-default .site-content, .container,
    	.page-template-default:not(.woocommerce) .site-content .container {
    		max-width: 1700px !important;
    	}
    }
    #107678

    Hi Roberto,

    Please try below custom CSS code:

    @media (min-width: 1600px) {
    .page-template-front-page-template .container,
    .page-template-front-page-template:not(.woocommerce) .container {
    		max-width: 1500px !important;
    	}
    }
    @media (min-width: 1800px) {
    	.page-template-front-page-template .container,
    	.page-template-front-page-template:not(.woocommerce) .container {
    		max-width: 1700px !important;
    	}
    }

    Thank you!

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