1 (edited by Lok 2013-04-13 11:57)

Topic: To edit text color of the bar on footer

I'm having fight with the css as you seen smile
I have changed the background of the bar of the reply box and the text can't be read now because of the colors.
I changed the left text color succesfully, but the words on the right part seems to be more difficult to edit sad

I would like to make the right part white too. Could help please?

2 (edited by Kushi 2013-04-13 10:48)

Re: To edit text color of the bar on footer

#brd-qpost p.options {
   color: #fff;
}
If any of my dropbox link fails with 404 error, change dl.dropbox.com/u/56038890/punbb/*.zip in address to 82283017.

Currently working on rPlus - responsive theme for developers to create their own themes basing on this one.

3 (edited by Lok 2013-04-13 11:44)

Re: To edit text color of the bar on footer

You are the guru!

One thing though, the right links color is not changed :S

Edit: I solved with a little trick! You're still the CSS Guru.

4

Re: To edit text color of the bar on footer

No tricks, proper way

#brd-qpost p.options a {

}

#brd-qpost p.options a:hover {

}
If any of my dropbox link fails with 404 error, change dl.dropbox.com/u/56038890/punbb/*.zip in address to 82283017.

Currently working on rPlus - responsive theme for developers to create their own themes basing on this one.

5 (edited by Lok 2013-04-13 12:37)

Re: To edit text color of the bar on footer

I wrote

#brd-qpost a,p.options{color:#fff}.post{background:#E3FAD9;}

You're line is best optimized? If so I'll replace it smile

6

Re: To edit text color of the bar on footer

You made it wrong way. You should learn basics of CSS.
In your definition you're giving

color: #fff;

attribute to

#brd-qpost a

and

p.options

( all of them, not only child of #brd-qpost -> check your profile, Change your password link will be white ). Also some reading about code formatting http://en.wikipedia.org/wiki/Indent_style

If any of my dropbox link fails with 404 error, change dl.dropbox.com/u/56038890/punbb/*.zip in address to 82283017.

Currently working on rPlus - responsive theme for developers to create their own themes basing on this one.

7 (edited by Lok 2013-04-13 13:57)

Re: To edit text color of the bar on footer

Replaced with your string and it works really well on the quick reply.
I noticed that the issue is on new thread and new reply page. :\

8

Re: To edit text color of the bar on footer

I thought you want to change only quick reply bar, sorry.

.main-subhead p.options,
.main-subhead p.options a {
    color: #fff;
}
If any of my dropbox link fails with 404 error, change dl.dropbox.com/u/56038890/punbb/*.zip in address to 82283017.

Currently working on rPlus - responsive theme for developers to create their own themes basing on this one.

9 (edited by Lok 2013-04-13 14:05)

Re: To edit text color of the bar on footer

Sorry to you, I was not too clear smile
I simply add that code to the end of the css file.

It not works properly, new topic and new reply page have no differences, and quick reply form is back to the previous colors :S

10

Re: To edit text color of the bar on footer

Don't work sad

11 (edited by Lok 2013-04-14 13:31)

Re: To edit text color of the bar on footer

Fixed myself, if anyone want to know the id is:

.ct-options, .ct-options a{color:#fff;}
.content-options a{color:#fff;}