phone portrait custom responsive different height?


Author Message
Cees

Posted: 6/10/2015
Quote message 

In style-responsive.css put ht next lines:

@media (max-width: 479px)
{
#art-resp-phone-portrait { display: block; }
.responsive .art-header { height: 100px !important;}
}

Or put it in the extra css option in Artisteer when you export your theme
 
Lars

Posted: 9/6/2015
Quote message 

@Cees

You helped me with this code earlier,

@media (max-width: 767px) {

#art-resp-phone-portrait { display: block; }

.responsive .art-header { height: 100px !important;}

}

but when I try to make the height smaller - like 55px ..... nothing happens :-(

Can you - or someone else tell me why?

//Lars
 
someone

Posted: 9/7/2015
Quote message 

Look in the standard responsive css for a minimum height. Chances are it's set to 100px and over-riding your 50px height.. So try removing or adding
.responsive .art-header{minimum height:20px;}
 
Lars

Posted: 9/8/2015
Quote message 

Thanks .... that was the problem :-)

//Lars