Kaptinlin Themes Support
Discussions
→ All Categories
Symplex
300
Striking
647
Responsive Beta Questions
22
General Questions
1549
Customization
1550
Usage / How to?
2131
Suggestions
205
3rd Party Plugins & Striking
476
Ver 5.1-5.1.7.1 Series Error Reporting (Closed)
82
Ver 5.0 Series Errors (Closed)
14
Ver 4.0 Series Errors (Closed)
10
Ver 3.0+ Series Errors (Closed)
87
Ver1.0- Ver2.3 Errors (Closed)
24
Activity
Sign In
To insert code use <code>...</code>.
Customization
Disable Custom Background on Smart Phones
Vote Up
0
Vote Down
RaycePR
July 2012
Is there a way to replace this custom background with a different custom background on a smart phone?
http://www.lafeteweddings.com/wordpress/
Thanks,
Melissa
2 Comments
sorted by
Votes
Date Added
Vote Up
0
Vote Down
BackuPs
July 2012
Hi Melissa,
You can try use
@media
handheld in custom css code textarea in striking->general options page.
@media
handheld {
body { background-image:display:none; }
}
@media
handheld {
#page { background-image:display:none; }
}
I dont know which container you use to hold the background image however that one needs to be disabled.
This of course won’t work on every device, but it will hit a decent amount.
You can also try to add the code below to the bottom of striking/functions.php file
require_once (THEME_PLUGINS . '/Browser.php');
$browser = new Browser();
if($browser->isMobile()){
wp_enqueue_style('theme-handheld', THEME_CSS.'/handheld.css', false, false, 'all');
}
Then you can go to 'striking/css/' folder, create a new css file named handheld.css and put all you custom css code in there for the handheld devices.
If none of this does work i have no solution for you.
Best regards,
Striking Team
Paul
Vote Up
0
Vote Down
RaycePR
July 2012
This sounds perfect. Thanks Paul!
Add a Comment
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
7,015
Symplex
300
Striking
6,715
↳ Responsive Beta Questions
22
↳ General Questions
1,549
↳ Customization
1,550
↳ Usage / How to?
2,131
↳ Suggestions
205
↳ 3rd Party Plugins & Striking
476
↳ Ver 5.0 Series Errors (Closed)
14
↳ Ver 4.0 Series Errors (Closed)
10
↳ Ver 3.0+ Series Errors (Closed)
87
↳ Ver1.0- Ver2.3 Errors (Closed)
24
In this Discussion
BackuPs
July 2012
RaycePR
July 2012
Powered by Vanilla