• Hello,

    I’m trying to update my website using a new theme –> Renden. I’ve been playing with the css for a while. But I’m getting no where. It seems that no matter what I change in the style.css file…there is no result.

    I would like to change the font and font color of the menu. (not pre-header, not footer, but the primairy menu) What do I change.

    Also…if I try to change the background for instance:
    original:

    body,
    #body-core {
    	background: white;
    	min-width: 320px;
    }

    to:

    body,
    #body-core {
    	background: black;
    	min-width: 320px;
    }

    There is no result.

    Can anyone help me on how to edit the css of the renden theme? I really like the theme….don’t want to switch to another.

    Kind regards
    $KILL

Viewing 3 replies - 1 through 3 (of 3 total)
  • Can you post a link to your site?

    Thread Starter SKILL

    (@skill)

    Hi stephencottontail (nice name :D),

    Internet explorer was the problem. I use different browsers to edit and view the site. Refreshing iexplore didn’t result in any change. When I use a different browser or rebooted iexplore, the changes are visible. (Actually a really dumb problem from my end)

    The link to the (try out website) http://www.kb-ict.com/v5.

    Which brings me to the next question. (also css related)

    I want to edit the “featured” widgets. I would like to edit the color, size, position, fonttype and so on. Where in the CSS can I find those widgets to change them?

    Thanks in advance.

    Generally speaking, you can target the featured areas with #section-home .section { ... }. In your theme’s custom CSS option, you could try something like this:

    #section-home .section h3 {
      font-family: "Times";
    }
    
    #section-home .section .entry-content {
      font-size: 20px;
      color: #ff0000;
      font-family: "Times";
    }

    The headings of the featured areas are done via image, which you can add by using your theme’s built-in option.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Theme Renden edit css’ is closed to new replies.