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

Post new topic   This topic is locked: you cannot edit posts or make replies.

Page 1 of 2 1, 2  Next

View previous topic View next topic Go down

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

Post by netsniper on November 5th 2009, 4: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

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by Team101 on November 5th 2009, 6:25 pm

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

Team101
Forumotion Member

Male
Posts: 236
Language: english
Country:
Join date: 2009-05-22

http://forumosion.forumotion.com

Back to top Go down

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

Post by netsniper on November 6th 2009, 3: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

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by slg on November 6th 2009, 3:44 am

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

slg
Forumotion Member

Male
Posts: 148
Age: 36
Language: English
Location: Texas
Country:
Join date: 2009-08-17

http://www.zootycoonwildlife.aforumfree.com

Back to top Go down

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

Post by netsniper on November 6th 2009, 3: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

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by slg on November 6th 2009, 4:07 am

When you changed it did you save the changes?

slg
Forumotion Member

Male
Posts: 148
Age: 36
Language: English
Location: Texas
Country:
Join date: 2009-08-17

http://www.zootycoonwildlife.aforumfree.com

Back to top Go down

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

Post by netsniper on November 6th 2009, 4: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

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by ankillien on November 6th 2009, 9:11 am

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;
}

_________________

ankillien
Support Moderator
Support Moderator

Posts: 2501
Language: English, HTML, CSS, JScript
Location: home.php?id=bedroom
Country:
Join date: 2008-07-13

Back to top Go down

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

Post by netsniper on November 6th 2009, 9:15 am

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

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by ankillien on November 6th 2009, 9:21 am

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.

_________________

ankillien
Support Moderator
Support Moderator

Posts: 2501
Language: English, HTML, CSS, JScript
Location: home.php?id=bedroom
Country:
Join date: 2008-07-13

Back to top Go down

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

Post by netsniper on November 6th 2009, 9:24 am

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

Thank you Hello

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by ankillien on November 6th 2009, 9:28 am

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

_________________

ankillien
Support Moderator
Support Moderator

Posts: 2501
Language: English, HTML, CSS, JScript
Location: home.php?id=bedroom
Country:
Join date: 2008-07-13

Back to top Go down

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

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

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

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by ankillien on November 6th 2009, 9:45 am

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

_________________

ankillien
Support Moderator
Support Moderator

Posts: 2501
Language: English, HTML, CSS, JScript
Location: home.php?id=bedroom
Country:
Join date: 2008-07-13

Back to top Go down

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

Post by netsniper on November 6th 2009, 9:51 am

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

Thank you Hello

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by ankillien on November 6th 2009, 10:22 am

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;
}

_________________

ankillien
Support Moderator
Support Moderator

Posts: 2501
Language: English, HTML, CSS, JScript
Location: home.php?id=bedroom
Country:
Join date: 2008-07-13

Back to top Go down

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

Post by netsniper on November 6th 2009, 10:30 am

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

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by ankillien on November 6th 2009, 11:08 am

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

_________________

ankillien
Support Moderator
Support Moderator

Posts: 2501
Language: English, HTML, CSS, JScript
Location: home.php?id=bedroom
Country:
Join date: 2008-07-13

Back to top Go down

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

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

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

Thank you Hello

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by musket on November 6th 2009, 1:19 pm



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, 1:24 pm; edited 1 time in total

musket
Forumotion Member

Male
Posts: 535
Language: english
Location: Northern Ireland
Country:
Join date: 2008-09-04

http://www.musketsforum.com/index.htm

Back to top Go down

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

Post by netsniper on November 6th 2009, 1:23 pm

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


Thank you Hello

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by musket on November 6th 2009, 1:27 pm


musket
Forumotion Member

Male
Posts: 535
Language: english
Location: Northern Ireland
Country:
Join date: 2008-09-04

http://www.musketsforum.com/index.htm

Back to top Go down

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

Post by netsniper on November 6th 2009, 2: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

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by musket on November 6th 2009, 4:21 pm

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

musket
Forumotion Member

Male
Posts: 535
Language: english
Location: Northern Ireland
Country:
Join date: 2008-09-04

http://www.musketsforum.com/index.htm

Back to top Go down

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

Post by netsniper on November 6th 2009, 4:24 pm

Oooooooooops Embarassed Embarassed Embarassed sorry it phpBB2

Thank you Hello

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by ankillien on November 6th 2009, 9:58 pm

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

_________________

ankillien
Support Moderator
Support Moderator

Posts: 2501
Language: English, HTML, CSS, JScript
Location: home.php?id=bedroom
Country:
Join date: 2008-07-13

Back to top Go down

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

Post by netsniper on November 7th 2009, 4:11 am

Hiya ankillen here is the snapshot



Its the Grey area I am trying to change

Thank you Hello

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by netsniper on November 8th 2009, 10:30 am

Can anyone help me with this ?

Thank you Hello

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

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

Post by ankillien on November 8th 2009, 11:13 am

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.

_________________

ankillien
Support Moderator
Support Moderator

Posts: 2501
Language: English, HTML, CSS, JScript
Location: home.php?id=bedroom
Country:
Join date: 2008-07-13

Back to top Go down

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

Post by netsniper on November 8th 2009, 11:28 am

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

netsniper
Forumotion Member

Male
Posts: 599
Age: 56
Language: English
Location: Far Far Away
Country:
Join date: 2009-07-23

http://www.mybulgariaportal.com

Back to top Go down

Page 1 of 2 1, 2  Next

View previous topic View next topic Back to top


Permissions of this forum:
You cannot reply to topics in this forum