Reply To: Extra space on Blog entry title

Homepage Community Forums Aspire Theme Support Extra space on Blog entry title Reply To: Extra space on Blog entry title

#21671
Wes
Moderator

    Ah, sorry I must have gotten it mixed up. I meant to say the Google code was added and causing extra space.

    For the Social Buttons, the reason they’re disappearing when you Resize the Browser or view on mobile devices is because the Media Queries section is missing a few Closing Brackets } on some of the sections.

    For example, take a look at this code –

    @media only screen and (min-width : 1280px) {       
            .bw-featured-title  {
            	max-height:600px;
            	height: 600px;
            }
    

    There is an opening on the first line but no closing bracket at the end of the code. It should look like this –

    @media only screen and (min-width : 1280px) {       
            .bw-featured-title  {
            	max-height:600px;
            	height: 600px;
            }
    }

    Once you go and add the closing brackets on the parts where they’re missing, then it should start working.

    These are the lines that need fixing –

    @media only screen and (min-width : 1280px) {       
            .bw-featured-title  {
            	max-height:600px;
            	height: 600px;
            }
    
    @media only screen and (min-width : 1024px) {       
            .bw-featured-title  {
            	max-height:500px;
            	height: 500px;
            }
    	  
    
    @media only screen and (min-width : 768px) {       
            .bw-featured-title  {
            	max-height:360px;
            	height: 360px;
            }

    And this –

    /* Contact Form 7 and Contact Page Styling
    /******************************************************************/
    @media only screen and (min-width :1024px) {  	
    .wpcf7-form.cf7-style {
        margin: 0 auto;
        width: 500px; /*Add desired value here*/
        float: none;
        display: block;
    }

    I didn’t look at the whole file, so there could be more that may need fixing, but some of the code above is what is affecting the Social buttons to disappear.