Page 1 of 1
Quote
Posted: Fri Sep 14, 2007 11:44 pm
by holysjit
Hi, (my website =
www.thejokers.nl and I use the Andres08 template)
I tried to change my quote-box, but it didn't work. I edited these two files:
Styles.css and nuclear.css (nuclear is my template)
I just want that box two and one have the same colour! (see image)
and change the font to my default font. How do I do that?
Image:
http://img213.imageshack.us/img213/4479/quoteiu3.png
Thanks...
Posted: Sat Sep 15, 2007 1:05 am
by Don Chambers
It is much easier to answer your questions if you can provide a link to an entry that contains the code you wish to change. Can you do that here, even if it is just a test entry you keep from displaying on your frontpage?
Posted: Sat Sep 15, 2007 10:51 am
by holysjit
Posted: Sat Sep 15, 2007 2:42 pm
by Don Chambers
Here are the styles:
Code: Select all
.bb-code-title, .bb-php-title {
margin-bottom: 2px;
background-color:#CCCCCC;
font-weight: bold;
padding-left: 5px;
}
.bb-code, .bb-php {
font-family: courier, "courier new";
background-color: #dddddd;
padding: 10px;
}
The outer box is bb-code-title, and the inner box is bb-code. The styles above look to me like they are generated via a plugin. They might not exist in your template's stylesheets.
If they are not in your stylesheets, and are generated by a plugin, they will be overridden by the same rules in your stylesheet if you copy them there. If all you want to change is the background color, and you want it to be the same for both, you could do something like this:
Code: Select all
.bb-code-title, .bb-php-title, .bb-code, .bb-php {
background-color:#CCCCCC;
}
Posted: Sun Nov 25, 2007 7:37 pm
by holysjit
Hi,
I want two things:
1. A box (marked with green line) around my quote text, not only around the text 'QUOTE'
2. Where can I increase the space marked with the green arrow?
Screenshot:
http://img100.imageshack.us/img100/2709/stonersqh9.png
Thank you