Home Forums Pro Themes Education Hub Pro Responsive design question

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #18348
    mlevine3@esu.edu
    Participant

    For Mobile view:

    There is a large white space between the header and menu. Can that be removed?

    The two images in the body of the text appear after the word “Dear”. Can the images be moved below the text or removed?

    Screenshot: http://www.esu.edu/images/wordpress/education1.jpg

    Main Site: http://quantum.esu.edu/test_theme/

    #18383
    wensolutions
    Keymaster

    Hello @mlevine3@esu.edu

    To fix the issue in mobile version you need to add custom CSS.
    For this you need to go to Admin Panel / Appearance / Customize / Theme Options / Advanced Options.
    Here you need to copy and paste following CSS.

    #masthead {
        background-position: inherit;
    }
    @media only screen and (max-width: 767px) {
    	.site-header {
    	    padding: 0;
    	}
    }
    @media only screen and (max-width: 767px) {
    	.site-header {
    	    padding: 0;
    	}
    }
    @media only screen and (min-width : 320px) and (max-width : 568px) { 
    	.site-header {
        	min-height: 70px;
    	}
    }
    @media only screen and (min-width : 375px) and (max-width : 667px) { 
    	.site-header {
        	min-height: 80px;
    	}
    }
    
    @media only screen and (min-width : 414px) and (max-width : 736px) { 
    	.site-header {
        	min-height: 90px;
    	}
    }
    @media only screen and (min-width : 768px) and (max-width : 1024px)  { 
    	
    	.site-header {
    	    min-height: 160px;
        	padding: 0; 
    }
    	#masthead {
    	    background-position: center;
    	    background-size: cover;
    	}
    }

    Hope this will help you.
    Let us know how it goes.

    Regards!!!

    #18466
    mlevine3@esu.edu
    Participant

    Ok, your CSS took care of the white space (thank you). However the 2 images still appear after the word “Dear”. I would like the option of either removing images on mobile or at the very least have the image move below the text.

    #18558
    wensolutions
    Keymaster

    Hello,

    Please add the below given CSS to

    Dashboard -> Appearance -> Customize -> Theme Options -> Advanced Options

    @media screen and (max-width: 768px){
    	body.home .entry-content img {
    	    display: none;
    	}
    }

    Hope it helps.
    Best regards.

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