Running: Invision
So! My question goes on a simple one, though I'm just not sure where to place it. I'd like the change the text characteristics of all usernames that are in the red box; I'd like to change the font size and the font. For the font, I'd be linking into a Google Fonts,hwich provides me the CSS below. I need to know what to edit in and where. Thank you! <3
CSS:
Javascript:
So! My question goes on a simple one, though I'm just not sure where to place it. I'd like the change the text characteristics of all usernames that are in the red box; I'd like to change the font size and the font. For the font, I'd be linking into a Google Fonts,hwich provides me the CSS below. I need to know what to edit in and where. Thank you! <3
CSS:
- Code:
font-family: 'Wire One', sans-serif;
Javascript:
- Code:
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Wire+One::latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})(); </script>
Last edited by ℋunni on January 13th 2012, 7:58 am; edited 1 time in total