Category form

xgcell

Member
Is there a way to change the design on the drop down category form on the join page? if not maybe a link to a good java alt?
 

Basti

Administrator
Staff member
Pls be advised though that select box styling can result in some headache, since all browsers have different standart select box designs
 

xgcell

Member
I have done alot with my css so I dont think line 897 would be correct. Was trying to figure out wat id to use or if the are different psuedo for doing this.
 

Mark

Administrator
Staff member
just a reminder screen.css should not be edited direct ;) copy edits into user.css to avoid losing all of your changes when you upgrade later.
 

Basti

Administrator
Staff member
I have done alot with my css so I dont think line 897 would be correct. Was trying to figure out wat id to use or if the are different psuedo for doing this.
like mark mentioned, user.css

and the category box has id of "join_category", so you would target #join_category { .... }

Tip: Right click on the element you want to inspect -> inspect element
That not only shows you the html source so you know what id, class, whatever an element has, but also shows you linked css rules to that element
Very useful for testing
 
Top