• Resolved pionok

    (@pionok)


    I have a few questions.

    I’m building a website. at this moment it is a test website.
    testsite

    i made a childe theme of hueman and was working in the style.css

    now i have a pair of problems i can’t fix.

    1st. The maximum width of the site is at this moment 1600. Is it possible to make the width automatic? so everyone can see the width right on his/her screen? can someone help me to change it in the style.css I tryed it ,but it won’t work. if automatic isn’t possible maybe someone can explain me how to edit it to 1920?

    2nd. my menu gives me some problems. When i click on a menu item the page will load. But after the click the active button is not visible anymore. I tryed to change the active color in the style.css but it won’t work.

    last question for now. when u see the most upper bar en the most lower bar (both the same color-code) they are still different. I think it is a bit of transparancy in the code. but i can’t find where the problem is. same as the body color in the code. everything should be white #ffffff but it isn’t the same white as other pages with white.

    hopefully someone can help me a bit more.

    Maybe with custom CSS?

    sorry for my bad english.

    thanks already.
    rene

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi rene. Welcome to the Hueman forum.

    1st. You might find something in one of the posts from this forum search.

    2nd. Try this in your custom css:

    /* add background to active menu item */
    #nav-header .nav li.current-menu-item {
        background: rgba(0,0,0,0.1);
    }

    Last question:

    the most upper bar en the most lower bar

    Is that referring to the narrow lighter blue bars at the top and bottom of the site?

    everything should be white #ffffff but it isn’t the same white as other pages with white

    Where specifically are you seeing this?

    Just a side note: it appears that you have copied the entire default theme style.css file into your child theme style.css. Perhaps you’re already aware of this but that means you’ll need to remember to update your child theme style.css file every time you upgrade the theme.

    Thread Starter pionok

    (@pionok)

    I can’t find anything about maximum Side width, but it is ok.

    The menu is allready fixed.

    White is oke allready.

    Could u explain me more about a child theme?
    I used a child theme So i could change the style.css. In the beginning the child theme import the style.css from the original.
    But i thought it Will bring me problems when the theme is updated in the future.
    How can i edit the style.css without any update problems in the future?

    Thnx for youre reply.
    Rene

    Normally with a child theme you would import (old method in child theme style.css file) or enqueue (recommended method in child theme functions.php file) the parent theme stylesheet. Then, in the child theme style.css file, you would add only your custom css, like what you currently have in your custom css module. This way (a) the parent theme styles are always current, (b) the changes in your child theme style.css file aren’t lost when the theme is updated, and (c) you don’t have to worry about copying the custom css module when you update the theme. Does that help?

    Here are a couple of other generic posts regarding full-width:

    https://stackoverflow.com/questions/29051679/how-do-i-make-a-wordpress-theme-full-width

    https://stackoverflow.com/questions/35074436/how-do-i-make-my-wordpress-theme-full-width?lq=1

    Thread Starter pionok

    (@pionok)

    Ahhh ok Thank for the explaination.
    I Will try to change it.

    Many thanks
    Regards Rene

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Problems with hueman’ is closed to new replies.