Topic: [Solved] Pun stop bots - Changing Font/Sizes/Color

Hello,

I made a Punbb forum for kids and added a pun stopbot extension.
Tho I think the question isn't vissible enough for kids, so I wanna make it bold.
Anyhow, I dont know how to make it bold.
Here is a screenshot including a arrow towards the question about 'Donald Duck' which I wanna make bold.
http://www.chatair.nl/punbots.PNG

Thanks in advance,
Ken

Re: [Solved] Pun stop bots - Changing Font/Sizes/Color

I believe you'd need to change
extension/pun_stop_bots/views/question_page.php

In the extension the question is h2 class hn

which is defined in style/oxygen.css   

so either change the question_page.php to h3 or someother style that you like the size of
or
change oxygen.css (that will likely make things bigger, you don't want though!)

Re: [Solved] Pun stop bots - Changing Font/Sizes/Color

KeyDog wrote:

I believe you'd need to change
extension/pun_stop_bots/views/question_page.php

In the extension the question is h2 class hn

which is defined in style/oxygen.css   

so either change the question_page.php to h3 or someother style that you like the size of
or
change oxygen.css (that will likely make things bigger, you don't want though!)

Thanks, I found a solution... Tho the tags h3,h2,h1 dont make any difference and also <b> doesnt work at all...
I decided to make the text red and use <u>.
This is clear enough for kids I think. smile

Re: [Solved] Pun stop bots - Changing Font/Sizes/Color

okay....  maybe you'd need to take apart these in oxygen.css and assign different font sizes....
Default: (line 43)

.brd h1,.brd h2,.brd h3, .brd h4, .brd h5, .brd h6 {
    font-size: 1em;
    font-weight: normal;
    }

to

.brd h1 {
    font-size: 1em;
    font-weight: normal;
    }
.brd h2 {
    font-size: 1.2em;
    font-weight: normal;
    }

etc.

Anyone correct me if I'm wrong