Is it possible to change the background colour of a quote ? 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.
5 posters

    Is it possible to change the background colour of a quote ?

    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Is it possible to change the background colour of a quote ?

    Post by netsniper November 5th 2009, 10:45 pm

    Don't quite know how to ask this question ? so here goes, when someone makes a post and say they wanted to quote from previous ? is there a way to change the background color of the quote area ? I am using phpBB

    Thank you Hello
    Team101
    Team101
    Forumember


    Male Posts : 245
    Reputation : 0
    Language : english

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by Team101 November 6th 2009, 12:25 am

    If I understand you right you can try this admin panel>Display>colors>Quote Font Color
    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 6th 2009, 9:39 am

    Team101 wrote:If I understand you right you can try this admin panel>Display>colors>Quote Font Color

    Hiya Thanks for the reply as you can see from the Quote above the text is black and the background is a kind of off white ? in this case it would be the off white I would want to change, at present on my forum the text is Black and the background is dark Grey Rolling Eyes

    Thank you Hello
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51553
    Reputation : 3519
    Language : English
    Location : United States

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by SLGray November 6th 2009, 9:44 am

    Try this: admin panel>Display>colors>There should a choice for the color of the quote background



    Is it possible to change the background colour of a quote ? Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 6th 2009, 9:46 am

    Thanks for that the only bit I can find is this "Buttons, Code and Quote color :" and when I change the colour it makes no difference to the box ? any more advice would be appreciated

    Thank you
    Hello
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51553
    Reputation : 3519
    Language : English
    Location : United States

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by SLGray November 6th 2009, 10:07 am

    When you changed it did you save the changes?



    Is it possible to change the background colour of a quote ? Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 6th 2009, 10:12 am

    Yes I did save the changes but it made no difference at all to that quote box, I even went onto the forum and created a reply using a quote but it was still dark Grey

    Thank you Hello
    ankillien
    ankillien
    Energetic


    Posts : 5198
    Reputation : 129
    Language : English, XHTML, CSS, JS, PHP, SQL

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by ankillien November 6th 2009, 3:11 pm

    Hello,

    TO change quotebox text and background color. use this code.
    Add it to Admin CP > Display > Colors > CSS and submit.

    .
    Code:
    postbody .quote {
    background : red;
    color : yellow;
    }
    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 6th 2009, 3:15 pm

    Hiya ankillen, thank you for the code can you tell me what the Red & Yellow each represent ? and can I not use any HTML colour code instead so I can choose the shade ?

    Thank you Hello
    ankillien
    ankillien
    Energetic


    Posts : 5198
    Reputation : 129
    Language : English, XHTML, CSS, JS, PHP, SQL

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by ankillien November 6th 2009, 3:21 pm

    The 'red' is background color and 'yellow' is text color in the code that I gave.
    You can always use HTML color codes in place of names.

    If you don't want to use background color, just remove the color name, do the same for text color, if you don't want to change it.
    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 6th 2009, 3:24 pm

    Thanks for that very fast reply so do I just add it at the end of the CSS?

    Thank you Hello
    ankillien
    ankillien
    Energetic


    Posts : 5198
    Reputation : 129
    Language : English, XHTML, CSS, JS, PHP, SQL

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by ankillien November 6th 2009, 3:28 pm

    Yes, just add the code at the end of the CSS. And don't forget to submit after adding it.
    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 6th 2009, 3:39 pm

    Hi I did what you said and I hit the submit button but nothing changes here is what I used

    postbody .quote {
    background : f5ffbf;
    }

    Thank you Hello
    ankillien
    ankillien
    Energetic


    Posts : 5198
    Reputation : 129
    Language : English, XHTML, CSS, JS, PHP, SQL

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by ankillien November 6th 2009, 3:45 pm

    Sorry, mu code had a small bug and you color code too, I think Razz

    the exact code would be...

    Code:
    .postbody .quote {
    background : #f5ffbf;
    }

    Try this and check if it works Smile
    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 6th 2009, 3:51 pm

    Just tried it with your code and clicked submit and there is no difference its still Grey

    Thank you Hello
    ankillien
    ankillien
    Energetic


    Posts : 5198
    Reputation : 129
    Language : English, XHTML, CSS, JS, PHP, SQL

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by ankillien November 6th 2009, 4:22 pm

    It works on my forum. This code is for phpBB2 only.

    Try this code...

    Code:
    .postbody .quote {
    background-color : #f5ffbf !important;
    background-image : none !important;
    }
    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 6th 2009, 4:30 pm

    OK I have tried that code too and hit the submit button and no change, I also get this message .

    Detected error
    We have counted a different number of "{" and of "}". It means your CSS risks to be not valid and will not be posted correctly on your forum.

    We advise you to reread your code.


    I still get this messsge now even though I have removed the code you told me to use

    I am using phpBB


    Thank you Hello
    ankillien
    ankillien
    Energetic


    Posts : 5198
    Reputation : 129
    Language : English, XHTML, CSS, JS, PHP, SQL

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by ankillien November 6th 2009, 5:08 pm

    There is some problem is opening or closing curly braces in the code.
    Try adding the at the top of all the codes.
    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 6th 2009, 6:08 pm

    Hi I have tried that and there is not any change and still have the Error message ?

    Thank you Hello
    musket
    musket
    Helper
    Helper


    Male Posts : 1130
    Reputation : 131
    Language : English
    Location : Northern Ireland

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by musket November 6th 2009, 7:19 pm

    Is it possible to change the background colour of a quote ? Backgr10

    Code:
    <td class="row1" valign="middle"><div style="width: 100%; background-color:lightgreen">[color=black]netsniper wrote:
    Don't quite know how to ask this question ? so here goes, when someone makes a post and say they wanted to quote from previous ?
    is there a way to change the background color of the quote area ? I am using phpBB[/color]</div></td>
    </tr></table>
       </div>


    if you use html code as above you can paste a coloured background directly into your replies Very Happy
    i had to use a screenshot as html is disabled here Smile

    .


    Last edited by musket on November 6th 2009, 7:24 pm; edited 1 time in total
    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 6th 2009, 7:23 pm

    Hi Its only the Colour in the quote box I want changed but I want it changed permanently ?


    Thank you Hello
    musket
    musket
    Helper
    Helper


    Male Posts : 1130
    Reputation : 131
    Language : English
    Location : Northern Ireland

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by musket November 6th 2009, 7:27 pm

    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 6th 2009, 8:02 pm

    Thanks for your reply musket but I think if I do that then I will find myself in trouble for double posting ?

    Thank you Hello
    musket
    musket
    Helper
    Helper


    Male Posts : 1130
    Reputation : 131
    Language : English
    Location : Northern Ireland

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by musket November 6th 2009, 10:21 pm

    It might help to state the version of phpBB you're using version 2 or 3? scratch
    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 6th 2009, 10:24 pm

    Oooooooooops Embarassed Embarassed Embarassed sorry it phpBB2

    Thank you Hello
    ankillien
    ankillien
    Energetic


    Posts : 5198
    Reputation : 129
    Language : English, XHTML, CSS, JS, PHP, SQL

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by ankillien November 7th 2009, 3:58 am

    Can you post a screen shot of how your quotebox looks?
    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 7th 2009, 10:11 am

    Hiya ankillen here is the snapshot

    Is it possible to change the background colour of a quote ? Ppp

    Its the Grey area I am trying to change

    Thank you Hello
    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 8th 2009, 4:30 pm

    Can anyone help me with this ?

    Thank you Hello
    ankillien
    ankillien
    Energetic


    Posts : 5198
    Reputation : 129
    Language : English, XHTML, CSS, JS, PHP, SQL

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by ankillien November 8th 2009, 5:13 pm

    Hi,

    This code works perfectly on my forum. I've double checked and the code is correct. Your forum is phpBB2, right?

    Code:
    .postbody .quote {
    background-color : #f5ffbf !important;
    background-image : none !important;
    }

    I suggest you to try adding this code again and see if it works.
    Or try clearing your cache as that might be creating trouble.
    netsniper
    netsniper
    Active Poster


    Male Posts : 1040
    Reputation : 0
    Language : English
    Location : Somewhere

    Solved Re: Is it possible to change the background colour of a quote ?

    Post by netsniper November 8th 2009, 5:28 pm

    This is what my forum says

    Theme version phpBB2 (subsilver)

    But on the bottom of the forum it says
    Free forum | ©️ phpBB | Free forum support | Statistics | Contribution | Contact | Report an abuse | Free forums

    I have just added the code you gave me and clicked on the button that says Submit and then I got this message CSS updated successfully.

    Then I whent into a post grabbed a quote from one of them and did a preview and its still Grey I am more than happy for you to take a look if you want I can give you permission

    Thank you Hello