Mobile Layout of eNews Home Widget 2

Homepage Community Forums Aspire Theme Support Mobile Layout of eNews Home Widget 2

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #19958
    laurarabell
    Customer

      Hi there,

      On my mobile phone, the layout of the join our newsletter widget (home widget #2, genesis enews widget) is not ideal. See screenshot below.

      Any ideas for improving this mobile layout?

      Homepage is – http://thedonjuans.rabellcreative.com

      Screenshot:
      http://thedonjuans.rabellcreative.com/wp-content/uploads/2016/11/IMG_6121.png

      thanks for any help!

      #20024
      Wes
      Moderator

        The version you’re using is missing the update I think. In the latest version the fields are supposed to be 100% width. If you look for this in your CSS (around line 3002) –

        .enews-widget input {
        	width: 100%;
        }

        It’s supposed to look like this –

        .enews-widget input,
        .front-page-2 .enews-widget input {
        	width: 100%;
        }

        The above can be found in the style.css file inside the responsive/media section –

        @media only screen and (max-width: 550px) {
        
        	.image-section h4,
        	.solid-section h4 {
        		font-size: 34px;
        		font-size: 3.4rem;
        		margin-bottom: 20px;
        	}
        	
        	.front-page-2 .image-section h4 {
        		font-size: 24px;
        		font-size: 2.4rem;
        	}
        
        	.enews-widget input,
        	.front-page-2 .enews-widget input {
        		width: 100%;
        	}
        	
        	.left-content,
        	.right-content {
        		text-align: center;
        		width: 100%;
        	}
        	
        	.left-content .fa,
        	.right-content .fa {
        		padding: 20px;
        	}
        
        }

        If you need assistance adding in this update just let me know.

        #20025
        Wes
        Moderator

          I’ll make sure and get this updated in the next release soon.

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