hi team, enfold is supposed to be retina ready. but how can i manage that? i read the topic about editig theme framework files – but i use a child theme and copying the framework files into the child theme folder and changing the php for the logo size didn’t work out. please could you explain a way to this feature?
Hi basmati!
You should use a plugin such as this one – http://wordpress.org/plugins/wp-retina-2x/
Cheers!
Yigit
it worked out with that function:
http://code.tutsplus.com/tutorials/ensuring-your-theme-has-retina-support–wp-33430
thanks Yigit, but now the mobile responsive view looks awfull. enfold enlarges the logo for mobile devices. now i’m seacrching for the enfold media queries – can you give me a hint where to find them in the parent theme?
Hey!
Please go to Enfold/Css folder and open Grid.css file. If you can point out the elements and post the link to your website, we can also gladly help you
Best regards,
Yigit
ok – i found it
but there seems to be no media query for the logo –
the height is reduced to 80px (!important) – why is that?
how to change the height?
the file is 600px x 70px @2x = 300px x 35px (2:1)
.responsive .logo a, .responsive .logo img {
height: 80px !important;
margin: 0 auto;
max-height: 80px !important;
max-width: 100%;
}
Hey!
You could create a media query targeting the logo on mobile:
@media only screen and (max-width: 767px) {
.responsive .logo a, .responsive .logo img {
height: 35px !important;
margin: 0 auto;
max-height: 35px !important;
max-width: 100%;
}
}
Cheers!
Josue
thanks josue, works perfect!