• Hello all! I am new to CSS and I would love some assistance with finding what to edit. I am using a twentyten child theme I created, and I am just adding my changes to the style.css to overwrite the defaults in the twentyten theme, so when I update changes will be saved.

    I have found this much so far: I can change all of my heading colors with this particular bit I found the default style.css file

    /* HEADING COLORS */
    #content h1,
    #content h2,
    #content h3,
    #content h4,
    #content h5,
    #content h6 {
    	color: black;
    }

    I am wondering where the code for the following colors are

    1. Background Color
    2. Main Text Color
    3. Page Title Color
    4. Links Color (both normal, hover, and visited)

    Note: I do have firefox and firebug installed, and when I click on the page title color, for example, it shows it as “entry-title” as the class, but there are a TON of “entry-title” parts in the style.css, so I’m not sure where to go from there.

    Any help is appreciated, thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’m interested in this too.

    1. Background Color (style.css line 205)

    body {
    	background: #f1f1f1;
    }

    2. Main Text Color (style.css line 208)

    body,
    input,
    textarea {
    	color: #666; /* <-- this is font color */
    	font-size: 12px;
    	line-height: 18px;
    }

    3. Page Title Color (style.css line 542)

    .page-title {
    	color: #000; /* <-- this is font color */
    	font-size: 14px;
    	font-weight: bold;
    	margin: 0 0 36px 0;
    }

    or/and this (style.css line 563)

    #content .entry-title {
    	color: #000; /* <-- this is font color */
    	font-size: 21px;
    	font-weight: bold;
    	line-height: 1.3em;
    	margin-bottom: 0;
    }

    4. Links Color (both normal, hover, and visited) (style.css line 317)

    a:link {
    	color: #0066cc;
    }
    a:visited {
    	color: #743399;
    }
    a:active,
    a:hover {
    	color: #ff4b33;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Twentyten (child) theme colors assistance’ is closed to new replies.