Created
December 11, 2013 17:58
-
-
Save eojthebrave/7915294 to your computer and use it in GitHub Desktop.
Open Textual's preferences, and under the style section click "Browse style files" to start editing your textual theme. Add something like the following below. It's just CSS so you can do just about anything. There's also a JS API you can tie into.
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
/* Apply a background image to both the #lullabot and #drupalizeme channels */ | |
body[channelname="#lullabot"] { | |
background: url(https://dl.dropboxusercontent.com/u/63787/lullalogo.png) no-repeat fixed bottom right; | |
} | |
body[channelname="#drupalizeme"] { | |
background: url(https://dl.dropboxusercontent.com/u/63787/dmelogo.png) no-repeat fixed center center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment