C
by qstudio
5 (2 reviews)
Conditional Stylesheets and Body Classes
Add conditional browser stylesheets and body class declarations
Tested up to WP 4.4.34 (Current: 6.9.4)
v0.4.7
Current Version v0.4.7
Updated 10 years ago
Last Update on 17 Jan, 2016
Refreshed 6 hours ago
Last Refreshed on
Rank
#23,544
—
No change
Active Installs
30+
—
No change
KW Avg Position
113
—
No change
Downloads
3.7K
—
Total downloads
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(2 reviews)
Next Milestone 40
30+
40+
1,326
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 3 more installs to reach 40+
Rank Changes
Current
#23,544
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
2 reviews
Overall
100%
5
2
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| stylesheets | 113 | — | Tag | 20 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 0.4.7
- Last Updated
- Jan 17, 2016
- Requires WP
- 3.2+
- Tested Up To
- 4.4.34
- PHP Version
- N/A
- Author
- qstudio
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 2
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,706
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#954
InfiniteWP Client
200K+ installs
#253
Optimole – Optimize Images in Real Time
200K+ installs
#254
Firelight Lightbox
200K+ installs
#257
Frequently Asked Questions
Common questions about Conditional Stylesheets and Body Classes
To add extra stylesheets, create a new CSS file and upload it to the root of your active theme or in the directory THEME/library/css/ - you can include a mixture of 3 values: Operating System name ( windows, mac, linux ) Browser Name ( firefox, safari, chrome, msie ) Browser Version ( a specific whole version number ) The plugin then looks for a matching CSS file in the root of the active theme or in the directory THEME/library/css/ using a combinations of these 3 values ( in these example we'll use IE 10 on windows ): browsers-msie.css browsers-msie-10.css browsers-windows-msie.css
The Browsers plugin adds a collection of extra browser and operating system specific classes to the HTML <body> tag of all front-end pages of the current active theme. The best way to find out what classes are added is to use a source code inspector like Google Chrome's Inspector to view the <body> tag. You can then use these new classes to select HTML elements in the following way ( again using IE 10 as an example ): ~~ style.css ~~ body.browsers-msie-10 { background-color: red; } ~~~~~~~~~~~~