Hi, I paste this code in quick css
@media only screen and (max-width: 990px) {
.responsive #header .main_menu ul {
display: block !important;
}
.responsive.html_header_top.html_mobile_menu_tablet #header_main .social_bookmarks {
right: 100%;
}}
@media only screen and (max-width: 767px) {
.responsive.html_header_top #header_main .social_bookmarks {
right: -10%;
margin-top: 0;
}}
The alignment is not working very well can someone help to fix it?
By the way I’d like to align the social icons with the mobile menu icon but only if the dimension of the screen allow to show them.
Hey Rapsodoc,
I’m not sure I understand what you are trying to do there, could you post a screenshot highlighting your intentions please?
Thanks,
Rikard
I’d like to show the social icons on device like tablets ecc… (not mobile phones) to the left of the menu icon .
Hi!
Try with this code:
@media only screen and (max-width: 767px) {
.responsive.html_header_top #header_main .social_bookmarks {
position: absolute;
top: 58px;
right: 70px;
}
}
Regards,
Josue
still not working
Refresh a few times, here’s what i see – http://screencast.com/t/JZ160uAV
Best regards,
Josue