Menu Icon Position
-
Hi. First thanks for this great job. Your plugin is really very very useful.
I’d like to post some questions about the position of menu icon. If you need to put this in some particular area of your page (header.php or others) you need to fix something, at least that’s what I had to do to ensure that the menu icon will be visible in a particular area of my header (I’m using Formation theme, but this I think is irrilevant).1) On your css style you need to add:
#click-menu {
display: block;
float: none ;
position: relative !important;
top: auto !important;
bottom: 30px !important;
}
This in order to change from absolute to relative position, otherwise the icon is always shown on top-right position. Set on bottom (or could be also top) the right value in order to fit your requirements.2) You need also to fix IE problems. Add to your css style:
/* IE10+ ———– */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
#click-menu {
display: block;
float: none ;
position: relative !important;
top: auto !important;
bottom: 3px !important;
}
}
Also in this case on bottom put your right value according to the particular graphic needs.3) Then you need to fix IPad display. On your css style add:
/* iPads (portrait and landscape) ———– */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
#click-menu {
display: block;
float: none ;
position: relative !important;
top: auto !important;
bottom: auto !important;
}
}That’s all and everything works fine.
Cheers
- The topic ‘Menu Icon Position’ is closed to new replies.