How do I extend a widget .

Support Area Forums Epic How do I extend a widget .

Viewing 3 posts - 1 through 3 (of 3 total)
URL to the page in question: http://middletownspringscommunitychurch.org
  • Author
    Posts
  • #35285
    Stan Achey
    Participant

    I’d like to extend a text widget across the entire home page under the main picture. Also, under this block of text I’d like a video across the whole page with text underneath that. Could the other widgets still be columns of 3? Thanks.

    #35286
    Bill Robbins
    Moderator

    Hi Stan,

    You can do that. Here’s how:

    1. Go to the Appearance section in your WordPress dashboard and click on the Theme Options page.
    2. Choose the styling tab there and scroll down to the Custom CSS box and paste this:
      
      @media only screen and (min-width: 1024px) {
      	
      	#text-7,
      	#featuredvideo-2 {
      		width: 920px;
      	}
      
      }
      
      @media only screen and (min-width: 768px) and (max-width: 1023px) {
      	
      	#text-7,
      	#featuredvideo-2 {
      		width: 700px;
      	}
      
      }
      
    3. Save your changes.

    That should cause the text widget there and the video widget to be full width. It’ll only affect those two widgets.

    If you have any questions, let me know.

    Take care,
    Bill

    #35287
    Bill Robbins
    Moderator

    Happy to help out 🙂

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