Skip to content

Instantly share code, notes, and snippets.

@nefeline
Last active September 18, 2017 19:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nefeline/1079de52e890fb403d4936e9554f6742 to your computer and use it in GitHub Desktop.
Save nefeline/1079de52e890fb403d4936e9554f6742 to your computer and use it in GitHub Desktop.
Add CSS only in Single Event Pages.
<?php
/**
* This function adds specific CSS if the page is a Single Event.
*/
if( tribe_is_event() && is_single() ) {
?>
<style type="text/css">.header_hor .l-subheader-h, .l-titlebar-h, .l-main-h, .l-section-h, .l-subfooter-h, .w-tabs-section-content-h, .w-blog-post-body {
max-width: 1140px !important;
}</style>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment