coinperson
Forum Replies Created
-
Forum: Plugins
In reply to: [Sliding Widgets] Hide on MobileHere is a solution. In your WordPress admin screen, go to Plugins > Editor > Sliding Widget. Choose the .php for whatever slider you are using. For instance, I am using a slider on the right hand side. So I choose sliding-widgets/tpls/right_css.php.
At the very top add:
<?php if (!wp_is_mobile()) : ?>
At the very bottom add:
<?php endif; ?>
Now it won’t show up on mobile!
If you want it by pixels, you could also use:
@media (max-width: 768px) {
.sticky-social {
display: none;
}
}Forum: Plugins
In reply to: [TAB SLIDE] IE – Tab content appears above the headerI went over to https://www.ads-software.com/plugins/sliding-widgets/
It works on all IE. I personally like this widget better, so I hope he/she updates it!
Forum: Plugins
In reply to: [TAB SLIDE] IE – Tab content appears above the headerHello, I have the same issue and would appreciate a fix. Works perfect in IE 11 when I add the code:
-ms-transform: rotate(90deg); /* IE 9.0+ */
However, this dose not work for IE 10, then in anything IE 9 or below, it just breaks and adds the widget to the top of the header.
of my IE users, 70% use IE 10 or less.
If you want to check it out yourself you can use https://netrenderer.com/ or https://browsershots.org
You have a great plugin here and I wish I knew code well enough to fix this issue ?? please update!
Forum: Plugins
In reply to: [TAB SLIDE] Tabs in IEI had the same problem. Here is how to fix it:
1. go to: #tab_title_wrap {
2. add (no quotes): ” -ms-transform: rotate(90deg); /* IE 9.0+ */ “
This option only works in Internet explorer 9.0 and newer. When using https://netrenderer.com or https://browsershots.org I found that this option only worked in IE 11. When you render in IE 9 or lower, the plugin actually shows up above your webpage ??
I have IE 7,8,9,& 10 visiting my webpage every day.