How do I change the text size and background colour in quote box in phpbb2? Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
4 posters

    How do I change the text size and background colour in quote box in phpbb2?

    Diana
    Diana
    Active Poster


    Female Posts : 1286
    Reputation : 21
    Language : English

    In progress How do I change the text size and background colour in quote box in phpbb2?

    Post by Diana September 21st 2010, 12:00 pm

    How do I change the text size and background colour in quote box in phpbb2?
    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    In progress Re: How do I change the text size and background colour in quote box in phpbb2?

    Post by Sanket September 21st 2010, 7:00 pm

    Hi rhe, add this to your css.

    Code:
    .quote{
    background-color: #FFFF00;
    font-size: 20px;
    }
    Change the color code & font size as per your requirement.
    Diana
    Diana
    Active Poster


    Female Posts : 1286
    Reputation : 21
    Language : English

    In progress Re: How do I change the text size and background colour in quote box in phpbb2?

    Post by Diana July 7th 2011, 7:12 pm

    Thanks. What's the bit to add to make the text cursive?
    Nera.
    Nera.
    Energetic


    Female Posts : 7078
    Reputation : 2017
    Language : English
    Location : -

    In progress Re: How do I change the text size and background colour in quote box in phpbb2?

    Post by Nera. July 7th 2011, 9:55 pm

    Try
    Code:
    .quote {
        font-family: cursive !important;
    }
    Diana
    Diana
    Active Poster


    Female Posts : 1286
    Reputation : 21
    Language : English

    In progress Re: How do I change the text size and background colour in quote box in phpbb2?

    Post by Diana July 10th 2011, 3:51 pm

    Hm, the cursive thing doesn't seem to work. It just puts the whole thing in to a weird font.
    Nera.
    Nera.
    Energetic


    Female Posts : 7078
    Reputation : 2017
    Language : English
    Location : -

    In progress Re: How do I change the text size and background colour in quote box in phpbb2?

    Post by Nera. July 10th 2011, 4:29 pm

    Add there the font you want for quote. To tell you the truth I'm not even sure what/wich one is cursive. You need a supported name for the font. Google it and change the name in the poprerty.
    Diana
    Diana
    Active Poster


    Female Posts : 1286
    Reputation : 21
    Language : English

    In progress Re: How do I change the text size and background colour in quote box in phpbb2?

    Post by Diana July 10th 2011, 5:49 pm

    I tried it with the font name but it won't change anyway, to cursive that is.
    Diana
    Diana
    Active Poster


    Female Posts : 1286
    Reputation : 21
    Language : English

    In progress Re: How do I change the text size and background colour in quote box in phpbb2?

    Post by Diana July 11th 2011, 11:44 am

    Anyone got any idea how to get the quote in cursive?
    Diana
    Diana
    Active Poster


    Female Posts : 1286
    Reputation : 21
    Language : English

    In progress Re: How do I change the text size and background colour in quote box in phpbb2?

    Post by Diana July 18th 2011, 10:22 pm

    rhe wrote:Anyone got any idea how to get the quote in cursive?
    Ahmedvirus
    Ahmedvirus
    Forumember


    Male Posts : 321
    Reputation : 59
    Language : English

    In progress Re: How do I change the text size and background colour in quote box in phpbb2?

    Post by Ahmedvirus July 18th 2011, 10:34 pm

    hi

    add this to css

    Code:
     .quote {
            font-family: "Comic Sans MS", cursive ;
        }
    or
    Code:
    .quote {
        -moz-border-bottom-colors: none;
        -moz-border-image: none;
        -moz-border-left-colors: none;
        -moz-border-right-colors: none;
        -moz-border-top-colors: none;
        background: url("http://i68.servimg.com/u/f68/12/68/53/05/quoteo10.png") no-repeat scroll left center #FFFFFF;
        border-color: #777777;
        border-left: 1px solid #777777;
        border-radius: 8px 8px 8px 8px;
        border-right: 1px solid #777777;
        border-style: solid;
        border-width: medium 1px;
        box-shadow: 8px 8px 8px #DCDCDC;
        color: #000000;
        display: list-item;
        font-family: Tahoma;
        font-size: 11px;
        font-weight: 700;
        margin: auto;
        max-height: 500px;
        max-width: 700px;
        overflow: auto;
        padding: 5px;
        width: 100%;

        font-family: "Comic Sans MS", cursive
    }

    If the purpose was not required, please explain to me Thanks Arrow
    Diana
    Diana
    Active Poster


    Female Posts : 1286
    Reputation : 21
    Language : English

    In progress Re: How do I change the text size and background colour in quote box in phpbb2?

    Post by Diana July 20th 2011, 12:16 pm

    Wow, thanks for the box. This might just do. But... I'd still like to know how to get the text cursive cause it doesn't seem to work even when you put the font name in it.