Forum Link: The Originals
4 posters
How can I change the post-color text?
Kratos- Forumember
- Posts : 328
Reputation : 24
Language : English
Location : United States
- Post n°1
How can I change the post-color text?
I need help changing the text color when someone posts a new topic. I want to change it to white or something.
Forum Link: The Originals
Forum Link: The Originals
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
Did you look at my review? Sent the answer there.
Administration Panel > Display > Colors > Category Header Bckground color
Administration Panel > Display > Colors > Category Header Bckground color
Kratos- Forumember
- Posts : 328
Reputation : 24
Language : English
Location : United States
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
It seems to be fixed. The preview does not work until you save and refresh I believe.
Ape- Administrator
- Posts : 19432
Reputation : 2010
Language : fluent in dork / mumbojumbo & English haha
in your ACP under CSS files look for
Change the 000 to your new colour and save
- Code:
.postprofile {
   color: #000;
}
Change the 000 to your new colour and save
Kratos- Forumember
- Posts : 328
Reputation : 24
Language : English
Location : United States
Saved, still didn't work. CSS is a pain these days..APE wrote:in your ACP under CSS files look for
- Code:
.postprofile {
   color: #000;
}
Change the 000 to your new colour and save
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
Can you please take a screenshot of what exactly you are wanting to change?
Kratos- Forumember
- Posts : 328
Reputation : 24
Language : English
Location : United States
On a phone so no I can't. Can't APE or another support mod or manager look at it.Forumedic wrote:Can you please take a screenshot of what exactly you are wanting to change?
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
Support Moderators and Managers aren't the only people who can help or share codes. I'd like to help, but I just need a better understanding of what you want to change.
Kratos- Forumember
- Posts : 328
Reputation : 24
Language : English
Location : United States
- Post n°10
Re: How can I change the post-color text?
In my CSS Codes(in the admin panel), APE told me to find the code he posted. I changed the 6-diget Hex Code to #FFFFFF and it didn't change the text color.Forumedic wrote:Support Moderators and Managers aren't the only people who can help or share codes. I'd like to help, but I just need a better understanding of what you want to change.
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°11
Re: How can I change the post-color text?
I meant what do you want to change? Like the general issue you are having. Are you trying to change the text color when typing?
If so, try:
Change the #000000 to whatever color you want the text to be.
If so, try:
- Code:
.sceditor-container iframe, .sceditor-container textarea {
  color: #000000 !important;
}
Change the #000000 to whatever color you want the text to be.
Kratos- Forumember
- Posts : 328
Reputation : 24
Language : English
Location : United States
- Post n°12
Re: How can I change the post-color text?
Find it in my CSS?Forumedic wrote:Are you trying to change the text color when typing?
If so, try:
- Code:
.sceditor-container iframe, .sceditor-container textarea {
  color: #000000 !important;
}
Change the #000000 to whatever color you want the text to be.
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°13
Re: How can I change the post-color text?
Add it into your CSS at the top.
Kratos- Forumember
- Posts : 328
Reputation : 24
Language : English
Location : United States
- Post n°14
Re: How can I change the post-color text?
Put your code in the "Search in CSS" thing and when I pressed search it didn't do anything.Forumedic wrote:Add it into your CSS at the top.
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°15
Re: How can I change the post-color text?
You are adding the code like I said earlier, not searching for it. It is not in your CSS yet, therefore, it will not be found.
Kratos- Forumember
- Posts : 328
Reputation : 24
Language : English
Location : United States
- Post n°16
Re: How can I change the post-color text?
I have to manually add in the code? Okay...Forumedic wrote:You are adding the code like I said earlier, not searching for it. It is not in your CSS yet, therefore, it will not be found.
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°17
Re: How can I change the post-color text?
Yes, you have to add the code.
Kratos- Forumember
- Posts : 328
Reputation : 24
Language : English
Location : United States
- Post n°18
Re: How can I change the post-color text?
Added in the code. Tested it, in WYSIWYG mode it was white.(When I typed) and when I returned to the other mode it was black.Forumedic wrote:Yes, you have to add the code.
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°19
Re: How can I change the post-color text?
Remove the code I gave you earlier from CSS and try this:
Do not change any of the colors, just paste that in the CSS and delete the CSS code I sent earlier.
- Code:
.sceditor-container iframe, .sceditor-container textarea {
background: none repeat scroll 0 0 #000 !important;
color: #fff !important;
font-size:13px;
}
Do not change any of the colors, just paste that in the CSS and delete the CSS code I sent earlier.
Kratos- Forumember
- Posts : 328
Reputation : 24
Language : English
Location : United States
- Post n°20
Re: How can I change the post-color text?
It just made the entire post box black.
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°21
Re: How can I change the post-color text?
The first code I gave should have worked. Did you change the color? If you didn't modify the color that would make sense why the color didn't change. Just try this:
- Code:
.sceditor-container iframe, .sceditor-container textarea {
  color: #ffffff !important;
}
Kratos- Forumember
- Posts : 328
Reputation : 24
Language : English
Location : United States
- Post n°22
Re: How can I change the post-color text?
Didn't work.
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°23
Re: How can I change the post-color text?
Try:
I have that on my forum, it should work as it does work for mine.
- Code:
.sceditor-container iframe, .sceditor-container textarea {
  color:white !important;
}
I have that on my forum, it should work as it does work for mine.
Kratos- Forumember
- Posts : 328
Reputation : 24
Language : English
Location : United States
- Post n°24
Re: How can I change the post-color text?
Didn't work.
brandon_g- Manager
- Posts : 10113
Reputation : 923
Language : English
Location : USA
- Post n°25
Re: How can I change the post-color text?
Kratos wrote:On a phone so no I can't. Can't APE or another support mod or manager look at it.Forumedic wrote:Can you please take a screenshot of what exactly you are wanting to change?
Sorry to go a wee bit off topic here, but I just wanted to let you know you can take a screenshot from a phone. If you have an andriod, hold down the power button and the button at the same time. This will take a screenshot. I take screenshots from my phone all the time.
Thanks Forum medic for helping with this issue, your doing great and sorry to slightly de rail it. I just wanted to let Kratos know he can take screenshots, even from a phone.
-Brandon
Last edited by brandon_g on January 26th 2016, 10:49 am; edited 1 time in total
Remember to mark your topic when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?
Team Leader
Review Section Rules | Request A Review | Sticker Points
Kratos- Forumember
- Posts : 328
Reputation : 24
Language : English
Location : United States
- Post n°26
Re: How can I change the post-color text?
Ohh yeah, I think I have that on my Galaxy s6 edge+ I just forgot where the setting is to find it.brandon_g wrote:Kratos wrote:On a phone so no I can't. Can't APE or another support mod or manager look at it.Forumedic wrote:Can you please take a screenshot of what exactly you are wanting to change?
Sorry to go a wee bit off topic here, but I just wanted to let you know you can take a screenshot from a phone. If you have an andriod, hold down the power button and the button at the same time. This will take a screenshot. I take screenshots from my phone all the time.
Thanks Forum medic for helping with this issue, your doing great and sorry to slightly de rail it. I just wabted to let Kratos know he can take screenshots, even from a phone.
-Brandon
brandon_g- Manager
- Posts : 10113
Reputation : 923
Language : English
Location : USA
- Post n°27
Re: How can I change the post-color text?
There is no setting, just hold your power/screen lock button AND your 'Home' button at the SAME time to make a screenshot. It may take you a couple tries to get the hang of it, but once you do it is easy .
Sorry to take this off topic once again .
-Brandon
Sorry to take this off topic once again .
-Brandon
Remember to mark your topic when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?
Team Leader
Review Section Rules | Request A Review | Sticker Points
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°28
Re: How can I change the post-color text?
Can you please give us a screenshot of the code you put in your CSS? The code works.
Kratos- Forumember
- Posts : 328
Reputation : 24
Language : English
Location : United States
- Post n°29
Re: How can I change the post-color text?
Took a screenshot on my phone of the CSS. I don't know how to send it here.(Galaxy's are weird)Forumedic wrote:Can you please give us a screenshot of the code you put in your CSS? The code works.
brandon_g- Manager
- Posts : 10113
Reputation : 923
Language : English
Location : USA
- Post n°30
Re: How can I change the post-color text?
Kratos wrote:Took a screenshot on my phone of the CSS. I don't know how to send it here.(Galaxy's are weird)Forumedic wrote:Can you please give us a screenshot of the code you put in your CSS? The code works.
Upload it via servimg, once you get the image url, tap with both fingers on your screen over the url, when the copy and paste pop up comes up, select 'Select all' then 'Copy'.
Then come back into the main typing area, tap a blank area of it until the little arrow comes up, then select tap that arrow until a pop up that says 'paste' comes up. Paste the url.
Now when you hit send it will post the image .
-Brandon
Remember to mark your topic when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?
Team Leader
Review Section Rules | Request A Review | Sticker Points