Widget home page

Support Area Forums Bottega Widget home page

Viewing 3 posts - 1 through 3 (of 3 total)
URL to the page in question: http://www.cedarsfoodmart.com/new/
  • Author
    Posts
  • #36241
    Alejandro Paredes
    Participant

    Hi there!

    I’m trying to add an image in the bottom home page widget, I need it to be full width (960px).. but when inserting the HTML text it reduces it to about 300px.. is this possible?

    thanks

    Alejandro

    #36247
    Bill Robbins
    Moderator

    Hi Alejandro,

    Great question. Most widgets will take up 1/3 of the width of the area there, but we can change an individual widget to have a different width. If you will add in the widget with the image in it to your home page, I can send back instructions on how to make it full width.

    Let me know when you’re ready and I’ll take care of that for you.

    Thanks,
    Bill

    #36253
    Bill Robbins
    Moderator

    Thanks for adding that. Let’s place this in the style.css file of your child theme:

    
    #home-middle .ot-facebook.widget {
    	padding-bottom: 0;
    }
    
    #home-middle .ot-facebook.widget iframe {
    	margin-bottom: -7px;
    }
    
    @media only screen and (min-width: 1024px) {
    
    	#home-middle .widget_text {
    		width: 890px;
    	}
    
    }
    
    @media only screen and (max-width: 1023px) {
    	
    	#home-middle .widget_text {
    		width: 700px;
    	}
    	
    }
    
    @media only screen and (max-width: 767px) {
    	
    	#home-middle {
    		margin-left: auto;
    		margin-right: auto;
    	}
    	
    	#home-middle .widget_text {
    		float: none;
    		width: 82%;
    		padding: 2%;
    		margin-left: 0;
    		margin-right: 0;
    	}
    	
    }
    

    and see if that won’t do the trick for you. Let me know how it goes.

    Bill

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Widget home page’ is closed to new replies.