Loading...
 
Development

Development


Freetags CSS and TPL in Tikiwiki CVS 1.10

posts: 14 Portugal

Hello :-)

I had installed CVS 1.10 a few months ago. I am changing my colours in CSS, however, Freetags is not listed in CSS file.

How can I change the colours of Freetags list?? - where can It be?? in CSS?? in some TPL file??

Thank you.

http://www.ParkourAveiro.net

posts: 4656 Japan

I'd try looking at the HTML source around the Freetags list to see what CSS selectors are being used, and then do a search for that string in the 1.10 files. Normally CSS properties are either in the theme CSS file, or sometimes hardcoded in a template or javascript file.

-- Gary

posts: 14 Portugal

> I'd try looking at the HTML source around the Freetags list to see what CSS selectors are being used, and then do a search for that string in the 1.10 files. Normally CSS properties are either in the theme CSS file, or sometimes hardcoded in a template or javascript file.
>
> — Gary

Like you said, and I found It. I just add the next code at my CSS theme file:

Copy to clipboard
#centercolumn .freetaglist { background-color : white; border : 0px; padding : 0 10px; } a.freetag { color: #808080; // 50% branco padding : 0 4px; margin : 1px; } a.freetag:hover { font-weight: bold; color: #29cc29; // verde 80% background-color : white; margin : 0; border : 0px; }

posts: 2695 United States

I'm using tiki 8 with Artcuturus > trollparty (a dark theme).
My freetag list is showing white background, so of course my text isn't showing well...

I'm not finding freetaglist anywhere.

UPDATE: When I clicked edit CSS, I found
/***** Tags (freetags) *****/
.freetagitemlist {
margin-bottom: 30px;
padding: 0 0 10px;
}

All I had to do was add
background: #56534d;