removing bold from index

mhuneault / 2013-09-17 15:33:00   

Hi,

I am trying to modify the index titles so that they are NOT bold, but normal/regular. My page is here:
michelhuneault.com/3/

I shouldn't be so too complicated. Can't seem to find the right line in my CSS. Is there an overiding setting I missed? Thanks

here is the CSS:

/**
* CSS
*
* @version 2.0
* @author Vaska
*
* There are also some obscure rules in base.css
*/

body {
font-size: 12px;
font-family: Trebuchet MS, helvetica, arial, sans;
background: #fff;
color: #000;
line-height: 1.3em;
/* font-weight: 300; */
}

/* link scheme */
/* you can customize links further down the page too */
a:link { text-decoration: none; color: #000 ; }
a:visited { text-decoration: none; color: #000; }
a:hover { background-color: ; color: #808080; }
a:active { text-decoration: none; color: #808080; }

li.active a:link { text-decoration: ; color: #000 ; }
li.active a:visited { text-decoration: ; color: #808080; }

a img { border: none; }

/* general styles */
small { font-size: 9px; }

blockquote { padding-left: 9px; }

/* headings */
h1 { font-size: 20px; margin-bottom: 1em; }
h2 { font-size: 20px; margin-bottom: 1em; }
h3 { font-size: 15px; margin-bottom: 1em; }
h4 { font-size: 13px; margin-bottom: 1em; }

/* paragraph width */
#index p { margin-bottom: 1em; }
#exhibit p, code, blockquote { width: 450px; margin-bottom: 1em; /* line-height: 1.3em; */ }

/* highlighter style - maybe you want to change colors? */
.highlight { background: #ccff00; color: #000; }

/* never adjust the margin or padding here unless you seriously know what you are doing */
/* think #index .container and #exhibit .container for only padding adjustments */
#index { width: 215px; background: #fff; /* line-height: 1.3em; */ }
#exhibit { margin: 0 0 0 215px; }

/* styling the index */
#index ul { font-weight: normal; margin: 0; }
#index ul.section { font-weight: normal; margin-bottom: 1em; }
#index ul.subsection {font-weight: normal; }

/* the follow rules for index are not required */
/* they are mostly for complex customization */
/* for tag display */
#index ul#all_tags { list-style-type: none; margin-bottom: 1em; }
#index ul#all_tags li { display: inline; margin-right: 3px; }
#index ul#all_tags li a { }

/* active section title */
#index span.active_section_title,
#index span.active_section_title a

/* active exhibit title parts */
li.active a:link, li a.active, li.active a:hover, li a.active, li.active a:active, li a.active,
li.active a:visited, li a.active, li span.active, #index ul.section li.active a:link,
#index ul.section li.active a:hover, #index ul.section li.active a:active, #index ul.section li.active a:visited
{ font-weight: normal; }

/* additional #index options */
#index ul li .password a { /* background: url(../img/locked.gif) right center no-repeat; padding-right: 18px; */ }

/* the "new" indicator */
#index ul li sup { color: #000; font-weight: normal; text-transform: uppercase; font-size: 8px; vertical-align: top; }
/* end styling for index */

/* links styles only for the #index region */
#index a:link { }
#index a:hover { }
#index a:active { }
#index a:visited { }

/* links styles only for the #exhibit region */
#exhibit a:link { }
#exhibit a:hover { }
#exhibit a:active { }
#exhibit a:visited { }

/* this is where you adjust your paddings for #index and #exhibit together */
.container { padding: 27px 9px 25px 27px; }

/* this is where you pad them separately */
#index .container { }
#exhibit .container { }

mhuneault / 2013-09-17 15:35:00   

found it, it was in base.css (not index.css)

arsondpi / 2013-09-17 16:06:48   

Use Firebug, the firefox plugin to target the correct css selector.

This thread has been closed, thank you.