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 4, 2013 9:10:20 GMT -8
at one time brian gave me this to bold the Reply text in the Thread Page
.controls li a.reply-button { font-weight: bold; } .title-bar > .controls li a { font-weight: bold !important; }
now i need to bold New Event And Create Message
i tried this for New Event but nothing
.controls li a.new-event-button { font-weight: bold !important; }
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Jun 5, 2013 10:06:34 GMT -8
Try right clicking the button, selecting 'Inspect Element', and adjusting your CSS selector as necessary.
|
|
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 7, 2013 6:40:43 GMT -8
Try right clicking the button, selecting 'Inspect Element', and adjusting your CSS selector as necessary. i appreciate you showing me this, i do, if i can figure something out i can figure something out i found this and tried all of this but nothing worked. i didnt even look at the Create Message .title-bar .ul.controls a.calendar-new-event-button { font-weight: bold !important; } .title-bar > .ul.controls a.calendar-new-event-button { font-weight: bold !important; } .calender .ul.controls { font-weight: bold !important; } .calender > .ul.control a.calendar-new-event-buttons { font-weight: bold !important; } .calendar > .title-bar > .ul.controls a.calendar-new-event-button { font-weight: bold !important; } .calender > .ul.controls a.calendar-new-event-button { font-weight: bold !important; } .calender > .title-bar > .ul.controls > a.calendar-new-event-button { font-weight: bold !important; } .ul.controls > a.calendar-new-event-button { font-weight: bold !important; } .calendar-new-event-button { font-weight: bold !important; } .calendar a.new-event-button { font-weight: bold !important; } .controls li a.calendar-new-event-button { font-weight: bold !important; } .ul.controls a.calendar-new-event-button { font-weight: bold !important; }
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Jun 7, 2013 7:43:05 GMT -8
You actually got really, really close with this:
.calendar-new-event-button { font-weight: bold !important; }
Instead of ., it needs to be #, because it's an ID. so this will work:
#calendar-new-event-button { font-weight: bold !important; }
|
|
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 7, 2013 8:36:56 GMT -8
thanks, i figured out the Create Message
|
|