Can I completely remove the MGM toolbar? Initial view with menu open works well for the site I'm working on. No need to close it.
http://www.responsinator.com/?url=optodiode.com%2Freview6
Thanks in advance!
Can I completely remove the MGM toolbar? Initial view with menu open works well for the site I'm working on. No need to close it.
http://www.responsinator.com/?url=optodiode.com%2Freview6
Thanks in advance!
Yes, you can do it via a css edit (or two) in the media query, so, at around line #459, change the value of the display declaration from block to none here....
.p7MGM-01.responsive .mgm-toolbar {
display: block;
background-color: #222;
padding: 10px;
text-align: right;
}
AND at around line #482, you'll find a duplicate of the above, give it the same treatment.
It looks (to me at least) a little bit odd when the first tab is opened as it's background-color is white and it's not obvious that it is a tab, if you wanted to give it a bit of a contrast, put this in the media query....
.p7MGM-01.responsive a.mgm-root-item:hover, .p7MGM-01.responsive a.mgm-root-item.open {
color: #000; /*edit to suit*/
background-color: #ddf0f2; /*edit to suit*/
}
HTH
Perfect! Thank you!
You could maybe do with a little padding in the mgm columns, if you look in the responsinator, ipad portrait view, you'll see the text butt up against the red placeholder image. On a desktop, it's that way from about a 900px wide browser window until the breakpoint at 700px.
HTH
Fixed! Thank you for pointing this out. I'm actually using LBM for the columns and I added some padding to the images.
Looking good......
You must log in to post.