PDA

View Full Version : Changing Font Size & Color


daryllau
04-07-2007, 01:41 PM
Hi there... firstly thanks for this awesome plugin. I just downloaded it but was wondering if there is a way to change the font size and color of the word 'Sponsor a post'?

Thanks and regards,
Daryl

Aaron
04-07-2007, 07:03 PM
The script uses the CSS style in your wordpress blog. So you would either have to add a CSS style or you can try changing the header tags to make the text bigger. To do that find the following code in wp-bankroll.php

$text = "Sponsor a post";

to make changes you can just add code in front or behind the text like so

$text = "<h2>Sponsor a post</h2>";

Now that will use whatever your H2 tag looks like. Hope that helps.

daryllau
04-07-2007, 11:18 PM
Thanks so much Aaron... I'll give it a try then. Cheers!