Last active
December 28, 2015 22:09
-
-
Save jlarrigan/7570095 to your computer and use it in GitHub Desktop.
Css Hacks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Use this to hide the about tab on embeds */ | |
.embed #about-tab{ | |
display:none; | |
} | |
/* Use this to hide the whole toolbar on embeds */ | |
.embed .tb-toolbar { | |
display: none; | |
} | |
/* Use this to hide the latest tab on embeds */ | |
.embed #latest-tab{ | |
display:none; | |
} | |
/* Use this to hide just the social icones */ | |
.embed .tb-toolbar .tb-tools { | |
display:none; | |
} | |
/* Use this to hide the featured tab on embeds */ | |
.embed #featured-tab { | |
display:none; | |
} | |
/* Use this to hide the load more button on embeds */ | |
.embed .loadmore { | |
border-bottom: 0px; | |
} | |
.embed #load-more { | |
display: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For embeds | |
<= 479 1 col | |
<= 767 2 col |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Guide to help you replace the hashtag with an image. Note you have to hide the hashtag */ | |
.live .masthead .tb-meta h2 { | |
display:none; | |
} | |
.live .masthead .tb-meta{ | |
height:80px; | |
background: url(http://cl.ly/image/2M3T3W2c0r1T/chivas.png) no-repeat; | |
background-position: 50% 50%; | |
background-size: auto 80% | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment