Non-threaded

Forums » Advanced Editor Forum » Read Thread

Get help from the experts on variables, scripts, items, and other scary things.

How to change title color

10 years ago

Hey guys! It's Avery.

I'm using a dark background for most of my pages, save a few for certain events, and I changed the text itself to white, but I can't seem to get the code I got from the Help and Info section "Creative Title Page" to work. Basically, I took the code, and just deleted the font size script and the font type script, leaving me with only color plus the section where you put the title in.

<color-"COLOUR">PAGETITLE</font>

Why isn't it working? Please help!

How to change title color

10 years ago

The Help&Info is a bit outdated; that doesn't work anymore. Give me a moment and I'll copy/paste a version that does work.

How to change title color

10 years ago

Thanks Taco.

How to change title color

10 years ago

Okay, here you go.

First, make a picture (if you're wanting a black background, open an art program, make it all black, save it. That easy), and make it what you want as the background. Then upload it, yadda yadda yadda (pretty sure you already know how to do that) and put this on the pages you want the background in. Make sure you have the RTE turned off.

<html><style>body{background: url('Insert Url of picture') fixed 50% / cover;}</style></html>

 

Put this for where you want to change the color to white. (black would be all '0' instead of '255')

<p><span style="color:rgb(255, 255, 255)">Put text here.</span></p>

How to change title color

10 years ago

I'd like to add that for a solid background color, instead of the whole body{...} thing you could just use body{background-color:black;}. As for colors, X11 color names and hex codes are also accepted. That is to say, color:red would work and so would color:#FF0000.

How to change title color

10 years ago

I don't think you understood what I'm saying. I have the background in place already, that part was easy, but the problem I'm having isn't with the text that you type in the text box, it's the text you put for the title of the page. I can't change that to white. I only need to change that one part. I'm fine with setting the text color to white for the body, there's no problem there. Do you understand now? Or did I miss something?

How to change title color

10 years ago

The same thing should apply. <span style="color:white;">PAGETITLE</span> should work for you.

How to change title color

10 years ago

Thanks Bradin, you're always a big help. Taco, points for trying! ^w^

How to change title color

10 years ago

To be fair, what I gave you isn't much different from Taco's final line.

How to change title color

10 years ago

Sorry, Taco, I'm still kind of new at this, and due to my n00b coding skills, I didn't realize you had given me the line I needed. So equal thanks to you both! ^w^

How to change title color

10 years ago

It works! Thanks to you both! ^w^