request for mobile viewing
-
Hi,
I have two requests for mobile viewing (using WP Touch plugin).
Figure:
https://gyazo.com/45dc0cf4b489604a34a4d6e2e980e8971) The first of them is the css issue of GLT tool-bar bottom margin. It’s comes from hard coded inline css value.
I’m using AddThis Share Button plugin and it’s appears at he bottom of screen. (I prefer floating bottom position of the screen than bottom position of page.) But GLT tool-bar is also shown on the bottom of screen, so both plugins are at the same position.
I tried to customize bottom margin of GLT tool-bar by changing css bottom value from default 50px. But I could not make it via ‘Add CSS Styles’ UI because that margin is defined with inline style (style=””) and implemented in load-toolbar.js as below.> $(‘.tool-rounded’).css(‘bottom’,’50px’);
So I changed source code of load-toolbar.js as below.
> if ( window.matchMedia(‘(max-width: 600px)’).matches ) {
> $(‘.tool-rounded’).css(‘bottom’,’92px’);
> } else {
> $(‘.tool-rounded’).css(‘bottom’,’50px’);
> }This change resolved the issue well. (see bottom of figure.)
But it causes that I have to check the plugin update and edit the source code after plugin update. I don’t know why hard coded such a positioning style value as inline css. I think those values should be able to customize by user via ‘Add CSS Styles’ UI.Could you improve this issue?
2) The second is width of logo image issue of the Google Translator.
The width of Google Translator box at the top of page is little bit long to show all items of it. So everyone can not click close button at the right side of it. (see top of figure.)I think the way to resolve this issue for resizing google logo image smaller. But I did not find the way to change it.
Could you let me know the way to solve this issue?
Thanks,
- The topic ‘request for mobile viewing’ is closed to new replies.