Is it feasible to apply specific styles based on the ID or load various CSS files depending on the URL you are visiting?
For example:
<script>
if(location.href == 'http://jpftest2.tumblr.com/about'){
document.write('<style type='text/css'>
.social {
display:none;
}
</style>');
}
</script>
So when a user navigates from the root URL to the "/about" page, I want to implement the style:
.social {
display:none;
}
It would be ideal if it was also possible to load an entirely different CSS file based on the URL?
The pages on Tumblr all share the same head, so introducing different CSS for each page is not straightforward.