Search found 8 matches

by maxasher
Wed Aug 29, 2012 8:31 pm
Forum: WPSubscribers
Topic: Disable plugin for mobile users
Replies: 14
Views: 20446

Adding in header didn't work but I looked in my style.css and found this code:

/* Mobile */
@media only screen and (max-device-width: 480px) {
.entry-content {font-size:1em;}
.scrolltop {display:none;}
}

so I replaced with

/* Mobile */
@media only screen and (max-device-width: 640px) {
.entry ...
by maxasher
Wed Aug 29, 2012 8:09 pm
Forum: WPSubscribers
Topic: Disable plugin for mobile users
Replies: 14
Views: 20446

I tried adding that code in style.css as well as the custom css at end of post opt in, but it didn't work for either. Is there any additional code I need to add to make it function? Thanks for all your help.
by maxasher
Wed Aug 29, 2012 7:39 pm
Forum: WPSubscribers
Topic: Disable plugin for mobile users
Replies: 14
Views: 20446

normally this one work (depends of your template) :

@media screen and (max-width: 640px) {
div#ia-optin-form{
display:none;
}
}

you can see here : http://www.wpsubscribers.com/beta/version-1-43.html

I tried adding this code to style.css and then simply adding to to end of post opt in in ...
by maxasher
Wed Aug 29, 2012 7:19 pm
Forum: WPSubscribers
Topic: Disable plugin for mobile users
Replies: 14
Views: 20446

Nice, what call would I use for the post opt in form? #post_optin_form

??
by maxasher
Wed Aug 29, 2012 7:05 pm
Forum: WPSubscribers
Topic: Disable plugin for mobile users
Replies: 14
Views: 20446

I tried to change body for mobile phones with mobile CSS but it didn't change anything

body {
-webkit-text-size-adjust: 60%;
}
by maxasher
Wed Aug 29, 2012 6:38 pm
Forum: WPSubscribers
Topic: Disable plugin for mobile users
Replies: 14
Views: 20446

The problem is I adjusted the height so it doesn't have a large gap at bottom when viewing from a computer, however when its on an iPhone the height isn't large enough. Is there a way to use CSS so it appears taller on mobile devices but not on computers?
by maxasher
Wed Aug 29, 2012 6:24 pm
Forum: WPSubscribers
Topic: Disable plugin for mobile users
Replies: 14
Views: 20446

Hi Jean thanks for the quick response. Right now I am still in testing mode and only have it active for administrators - I logged in on my iPhone as admin to test, I noticed the Footer opt in does not appear but the post opt in form does. Would you like me to reply with URL when I push plugin live ...
by maxasher
Wed Aug 29, 2012 6:13 pm
Forum: WPSubscribers
Topic: Disable plugin for mobile users
Replies: 14
Views: 20446

Disable plugin for mobile users

Hello, I am having issues with post opt in form rendering correctly on mobile devices. The opt in box ends up lowering itself into the comments section. Is there a way I can disable all features of this plugin for mobile visitors?