Hi,
Great theme!
I have some questions about configuration, very grateful for your help.
* The menu switches to Toggle from 768px but there is still room to display the main menu. I want to change that to 600px for example.
How can I do it?
* There are 3 icons in page Home (with Icon Caption) with anchors links.
The link applies only the icon but want to apply to the caption too.
It is possible?
* There are 3 blocks in page Home, in responsive way should always appear first image and then the title and the text (or vice versa, but always the same).
It is possible?
Hi Juan!
1.
To change the breakpoints you need to do some custom css and js changes. Please follow the steps provided in this ticket.
https://kriesi.at/support/topic/mobile-menu-tablet-breakpoint/
2.
You can achieve this by adding a Icon shortcode inside the text box with a link.
[av_font_icon icon='ue81f' font='entypo-fontello' style='border' caption='caption here' link='post,3010' linktarget='_blank' size='40px' position='left' color='#745f7e'][/av_font_icon]
3.
This requires a lot of customization and you probably need to hire a freelancer to do this job.
Cheers!
Vinay
Thanks Vinay!
I have Footer with 4 columns.
From 768px begins to show only 1 column and others below
I want to show between 768px and 480px, two above and two below.
Can you help me?
Hey!
Please use the below css in Enfold > General Styling > Quick CSS
@media only screen and (max-width: 767px) {
#footer .container .flex_column {
width: 50%!important;
}
}
@media only screen and (max-width: 480px) {
#footer .container .flex_column {
width: 100%!important;
}
}
Regards,
Vinay