inherit
tunesrcoolii@gmail.com
86185
0
Oct 3, 2013 8:48:20 GMT -8
tunescool
4,399
August 2006
tunescool
|
Post by tunescool on May 16, 2013 6:09:59 GMT -8
this changes the Thread Title input on the Posting Page and the inputs on the Edit Profile pages
input[type="text"], input[type="email"], input[type="password"] { color: @forms_field_text_color; font: @forms_field_text_font; background: @forms_field_background; border: @forms_field_border; .rounded-corners(@forms_field_border_radius); width: 300px; height: 20px; padding: 2px; } i want to keep the rounded corners on the Posting Page but not the Edit Profile pages
and change the border
support board told me it would be a template mod
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Jun 3, 2013 10:51:54 GMT -8
Most of the containers in V5 have their own unique classes specific to them that you can add before the CSS you posted.
In the case of the posting page, you could use container.wysiwyg-area to do this.
The class of a container can always be found in the source or by using your browser's dev console by right-clicking an element and inspecting it, then looking for a div with the class container. There will usually be another class separated by a space that goes along with it.
|
|
inherit
tunesrcoolii@gmail.com
86185
0
Oct 3, 2013 8:48:20 GMT -8
tunescool
4,399
August 2006
tunescool
|
Post by tunescool on Jun 6, 2013 19:52:33 GMT -8
sometimes when threads have been updated they dont show up in participated, or at least the New doesnt
i took the rounded part out of the original line and everything went back to normal and added a line with the
container.wysiwyg-area
and it doesnt change the posting page
container.wysiwyg-area input[type="text"], container.wysiwyg-area input[type="email"], container.wysiwyg-area input[type="password"] { color: @forms_field_text_color; font: @forms_field_text_font; background: @forms_field_background; border: @forms_field_border; .rounded-corners(@forms_field_border_radius); width: 300px; height: 20px; padding: 2px; } input[type="text"], input[type="email"], input[type="password"] { color: @forms_field_text_color; font: @forms_field_text_font; background: @forms_field_background; border: @forms_field_border; width: 300px; height: 20px; padding: 2px; }
|
|