Viewing 15 replies - 1 through 15 (of 15 total)
  • Hi Vitamin007. Welcome to the Hueman forum. The Body Background option in the previous version was considered “plugin territory” by the WP theme review team and wasn’t allowed to be included in the new version of the theme. The developer is working on adding it to the Hueman Addons plugin which is available on the theme web site.

    Oh I was searching a way to change the background color and the font color….hmm…I’m so sad..sniff sniff..

    @moraes – the background color is in Customize > Global Settings > General Design Options. To change the font color you’d need to use CSS:
    https://www.w3schools.com/css/css_text.asp

    I am able to change the Body Background, Topbar Background, Header Background, Header Menu Background and Footer Background..but not the actual page background (where the content goes). I want to mach all the collors. But thanks, I appreciate your help. ??

    You could use CSS:

    /* change post background to yellow */
    .content {
        background: #ff0;
    }
    Thread Starter Vitamin007

    (@vitamin007)

    Maybe you know how to put a picture on the background without the plugin?Without background site looks poor:(
    See it: https://prntscr.com/asvxko

    If you have a child theme (e.g. hueman-child) then create a style.css and insert the following:

    /*
     Theme Name:     Hueman Child Theme
     Theme URI:      https://your.blog/wp-content/themes
     Description:    Hueman Child Theme
     Author:         Your name
     Author URI:     Your URI
     Template:       hueman
     Version:        Your version
    */
    
    @import url("../hueman/style.css");
    
    /* Put a picture in the background */
    /*---------------------------- */
    body { background: url(your.picture); font-size: 16px; line-height: 1.5em; color: #666; font-weight: 300; }

    Thread Starter Vitamin007

    (@vitamin007)

    I insert a link to a picture in the code, but nothing happens:(
    https://flirtweb.ru/wp-content/uploads/2014/12/pink-flirtweb.jpg

    /* Put a picture in the background */
    /*---------------------------- */
    body {
        background: https://flirtweb.ru/wp-content/uploads/2014/12/pink-flirtweb-1.jpg;
        font-size: 16px;
        line-height: 1.5em;
        color: #666;
        font-weight: 300;
    }

    see pic: https://prntscr.com/atp4l1

    @bdbrown thank you so much for your help. But I feel a little bit sad, I was able to change the font color with one click in “theme options” and now it’s all CSS…oh well…thanks anyway.
    PS: it is a great theme.

    I was able to change the font color with one click in “theme options”

    I don’t remember that option in the old version. Do you recall what section of the theme options it was in?

    @vitamin007 – try this:

    body {
      background-image: url(https://flirtweb.ru/wp-content/uploads/2014/12/pink-flirtweb-1.jpg);
    }
    Thread Starter Vitamin007

    (@vitamin007)

    bdbrown, you my hero:) thank you!

    Glad it worked. If you don’t need any further assistance here please mark the topic as Resolved. Thanks.

    Thread Starter Vitamin007

    (@vitamin007)

    thank you!

    Just to reconfirm, will the background image option be within the human addons plugin, or (if that is the only thing I am missing) should I just fiddle with the CSS

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘Own background’ is closed to new replies.