Disable standard bold section titles

ncouck / 2012-10-06 21:52:31   

Standard settings for section titles are bold.
I've looked in the forum, but came up with nothing...

How can you disable the section titles from being bold?

arsondpi / 2012-10-07 05:04:48   

look in line 78 in base.css (via Admin->Assets)

  1. #index ul.section span.section_title, #index ul.section span.section_title a {
  2.     cursor: pointer;
  3.     font-weight: bold;
  4. }

otherwise add a line in style.css

  1. #index ul.section span.section_title, #index ul.section span.section_title a {
  2.     font-weight: normal !important;
  3. }
yinakim / 2012-10-12 02:43:57   

Thank you ncouck for asking the qeustion arsondpi for a clearing it up. I got it to work by adding a line in style.css. But is there a way to make it bold when it's clicked? like the other menus?

arsondpi / 2012-10-12 06:25:42   

maybe something like this:

  1. #index ul.section span.section_title, #index ul.section span.section_title a {
  2.     font-weight: normal !important;
  3. }
  4. #index  ul.section span.active_section_title, #index  ul.section span.active_section_title a {
  5.     font-weight: bold !important;
  6. }
luis / 2012-12-03 10:41:46   

I added the above code in my style.css file and it works perfectly.

Thanks!

This thread has been closed, thank you.