Tagged: colums, mobile, Responsive Design
Hi !
The structure of my page is :
3/5 flex_column + 2/5 flex_column
I’d like to show the 2/5 flex column on desktop but not on mobile devices. How Can I do this please ?
On desktop having :
http://www.sphere-evenements.com/flex-column.jpg
On mobile, having :
http://www.sphere-evenements.com/flex-column-mobile.jpg
Thanks for your help !
Regards,
Franck
Hi SphereEvenements!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 768px) {
.page-id-2870 .av_two_fifth { display: none; }}
You can right click on Chrome or Firefox to inspect elements to find page ID’s http://i.imgur.com/HyPTCRg.jpg
Regards,
Yigit
Thanks Yigit !
I’d like this column not appear under 1023px so I have changed this parameter (max-width: 1023px), but now my 3/5 flex column doesn’t take full-width and I have a white part on the right : http://www.sphere-evenements.com/flex-column-blanc.jpg
How can I have full width on the first column, on mobile device please ?
Regards,
Franck
Hi!
Please add following code to Quick CSS as well
@media only screen and (max-width: 1024px) {
.page-id-2870 .av_three_fifth { width: 100%!important; }}
Best regards,
Yigit
Great !
Thank you Yigit !
Cheers,
Franck