• Is it possible to customize the css when the main hueman theme is installed from the wordpress repository.

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • Yes. You can either use a child theme or a custom CSS plugin. What are you trying to change?

    Thread Starter nextstep

    (@nextstep99)

    Hi Stephen thanks for getting back. I have installed hueman theme via the wordpress repository and also activated the child theme as available from the hueman site .. alxmedia.se

    I am installing a plugin forum called WP Symposium pro. What I am trying to change is the forum page to submit a post. Using Firebug it appears to be picking up the css from the theme and gives me this:

    .entry pre {
    background: url(“img/pre.png”) repeat scroll center top rgba(0, 0, 0, 0);
    border: 1px solid #ddd;
    line-height: 19px;
    margin: 30px 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 18px 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
    }
    .entry code, .entry pre {
    font-family: Monaco,”Courier New”,”DejaVu Sans Mono”,”Bitstream Vera Sans Mono”,monospace;
    font-size: 11px;
    }

    When I try to make adjustments nothing changes, but when I use the similar code from another theme it does change.

    (unfortunately I’m not strong on CSS and I feel like I’m chasing my tail in circles…)

    Thanks for your help

    Can you post a link to the page in question?

    Thread Starter nextstep

    (@nextstep99)

    When I look at your child theme’s stylesheet, on line 13 you have:

    /* ----------------Customizing Start--------------------------------------------------------- *

    You have the /* to start the comment, but you don’t have the ending */, which means that the browser is treating everything following that line as a comment until it sees the appropriate */. You should change the end of that line from * to */.

    Thread Starter nextstep

    (@nextstep99)

    d’oh!

    That fixed it … arghhh…

    Thank you!

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

The topic ‘custom css’ is closed to new replies.