is it possible to introduce id specific styles or load different css files depending on the "url" you are at?
something like this:
<script>
if(location.href == 'http://jpftest2.tumblr.com/about'){
document.write('<style type='text/css'>
.social {
display:none;
}
</style>');
}
</script>
so when a user goes away from the root url to the "/about" page. i want to introduce the style:
.social {
display:none;
}
would be better if it was also possible to load a different CSS file altogether depending on the URL?
the different pages on tumblr share the same head so i can't introduce a different css on different pages