PDA

View Full Version : couple of styling questions


webtc
07-02-2011, 07:07 PM
just trying to find a couple things to complete my style but .. for the life of me I cant find em.. If someone could help that would rock.

the first one can be seen here:

(inbetween the thread name / like / twitter and the first post)

I cant find where to change the color of the currently white bar with thread tools, search tools ect.. (I dono if is a different style, but it appears in forum listing, thread listing and messages)

The next one I cant link , but the new editor.. man wheres the background for that? :( I just want to change it from that goofy white..

The last thing I was wondering is if you can export a style in the event that someone actually wants/likes mine :)

Thanks, Cheers

Jeff Ledger
07-02-2011, 07:39 PM
The first thing
link (inbetween the thread name / like / twitter and the first post)

is called .toolsmenu div

or you can apply a black bg without border using this code (add this to your additional.css)

.toolsmenu div {
background: none repeat scroll 0 0 #000000;
border-top: 0 none;
clear: both;
color: #4E4E4E;
float: left;
text-align: right;
width: 100%;
}

Second,

The ck editor bg is called

.cke_skin_kama .cke_wrapper

find it, and change the background-color to your prefer one.

Good luck and have fun!

~Jeff

webtc
07-02-2011, 07:53 PM
sweet thanks, all done!

Jeff Ledger
07-02-2011, 08:03 PM
You are welcome !