Hi!
To change all buttons, have a look at bb_default_style.css:
You will find there this:
/* Input areas - boxes, textareas... */ .inputButton { font-family: Verdana,Arial,Helvetica,sans-serif; background: #FFFFFF; border-top: #CCCCCC 1px solid; border-right: #CCCCCC 1px solid; border-left: #CCCCCC 1px solid; border-bottom: #CCCCCC 1px solid; font-size: 10px; color: #000000; /* height: 19px; */ }
To get a bold button text for ALL buttons, add the line "font-weight:bold;" between the curly braces.
If you want to change only this specific button of your given url you have to copy the inputButton style to a new e.g. "submitPostButton" style and do your changes there.
Then you have to change the corresponding templates main_post_area.html and main_topics.html by changing class="inputButton" to class="submitPostButton" (or what class you have created in the css file). Then you can change the post buttons individually.
Regards, Christoph (also from Germany) |