How do I

Support Area Forums Moonrise How do I

Viewing 4 posts - 1 through 4 (of 4 total)
URL to the page in question: http://myrtlebeachfood.website/
  • Author
    Posts
  • #32376
    Avatar photoKen Robol
    Participant

    How do I make the widgets fit on both sides?

    #32380
    Bill Robbins
    Moderator

    Ken,

    Were you looking to have the text widget take up roughly two columns with the other two on the right? Here’s how you could do that:

    1. Go to your theme options page and choose the Advanced tab.
    2. Scroll down to the Custom CSS box and add this:
      
      @media only screen and (min-width: 767px) {
      
      	#text-2.widget {
      		width: 580px;
      	}
      	
      	#otfacebook-2.widget,
      	#widget_sp_image-2.widget {
      		float: right;
      	}
      
      }
      
    3. Update your settings.

    Have a great week,
    Bill

    #32381
    Avatar photoKen Robol
    Participant

    Look at it again Bill..
    Great things coming soon.
    Why can’t I get the map to show up better?

    #32387
    Bill Robbins
    Moderator

    Most map embed codes have the ability to set a size like Google Maps does. That way you can create the map so that it spans the full width. It’ll also set the height.

    If you have to you can do the same thing with CSS like this:

    
    .contact-map iframe {
    	width: 100%;
    	height: 350px;
    }
    

    Take care,
    Bill

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘How do I’ is closed to new replies.