• Resolved hyldahl82

    (@hyldahl82)


    How would I go about changeing the grey-ish background behind the slides?

    I’m looking to change it to white

Viewing 15 replies - 16 through 30 (of 30 total)
  • hi! i successfully changed the body background color and the “background color” behind the featured pages circles, but now, when you mouse over the featured image circles the expanded version of the image “bumps into ” the right side, so they’re not full circles. it’s as if the code below (which i gleaned from above) moved the featured image circles slightly to the right.

    /* Get rid of navbar/menu background */
    .navbar .navbar-inner {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background:none;
    }

    body {
    background: none repeat scroll 0 0 #FFFFFF;
    color: #000000;
    padding-bottom: 0;
    }
    .round-div {
    border: 104px solid #FFFFFF;
    }

    anyone have a solution?
    thanks!
    aliya
    powersuits.org

    Thread Starter hyldahl82

    (@hyldahl82)

    @electricfeet

    Is this how the child them should look like then?

    /*
    Theme Name: My Child Theme
    Theme URI: http: //mysite.com/
    Description: This is a custom child theme I have created.
    Author: My Name
    Author URI: http: //mysite.com/
    Template: customizr
    Version: 0.1
    */
    
    body {
      background: none repeat scroll 0 0 #FFFFFF;
      color: #5A5A5A;
      padding-bottom: 0;
    }
    Change #FAFAFA to background color you want
    Change #5A5A5A to text color you want
    You can also use an image as background:
    background: url('/wp-content/uploads/NAMEOFFILE.png') repeat fixed 0 0 #FAFAFA !important ;
    .round-div {
    border: 104px solid #ffffff;
    }
    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    @aliyarose, Please create/ continue your own thread regarding support for your own issue.

    @hyldahl82: No, you’ve mixed in the instructions with the styles. You’re also missing the line to import the rest of the Customizr styles, which is fundamental:
    @import url("../customizr/style.css");

    The file should look more like this:

    /*
    Theme Name: My Child Theme
    Theme URI: http: //mysite.com/
    Description: This is a custom child theme I have created.
    Author: My Name
    Author URI: http: //mysite.com/
    Template: customizr
    Version: 0.1
    */
    
    @import url("../customizr/style.css");
    
    body {
      background: white;
    }
    .round-div {
      border: 104px solid white;
    }

    …changing white to be red, green, whatever, or another colour in the hex format #654321.

    However, if these are the only changes you are making to the theme, then you don’t need a child theme. You can simply paste:

    body {
      background: white;
    }
    .round-div {
      border: 104px solid white;
    }

    in the Custom CSS panel of Customiz’it!

    Thread Starter hyldahl82

    (@hyldahl82)

    The background is an actual image right?

    Which file “represents” the style of the front page?

    Right clicking with chrome I get…

    <img data-src="holder.js/270x250" alt="270x250" style="width: 270px; height: 250px;" src="data:image/png;base64,iVBORw0KGg...

    If yes, maybe it would be more “convenient” for me – with the lack of experience I have – to just replace that file with a “white” background image.

    The background is an actual image right?

    Which background? The body background is the background of the whole page. The “background” of the circles around the featured images is actually a—rounded—border around the featured images.

    The “round” images (which are 250×270) are added as featured images inside the page you want to feature.

    Does that explain it better?

    Which file “represents” the style of the front page?

    Many files, together with information from your WordPress database.

    @aliyarose

    Did you find an answer to this problem?

    The featured pages circles, but now, when you mouse over the featured image circles the expanded version of the image “bumps into ” the right side, so they’re not full circles.

    I’m having the same problem when I reduce the size of the browser window, after following the instructions on this thread and using:

    body {
      background: none repeat scroll 0 0 #FAFAFA;
      color: #5A5A5A;
      padding-bottom: 0;
    }

    and

    .round-div {
      border: 104px solid #E8E4E3;
    }

    On rollover the right hand side of the feature circle has a straight line although it is still centered !

    Thanks

    tema customizr onde pode escrever codigo css?

    @idacy santana in the Custom CSS panel of Customiz’it!

    HELLO ELECTRICFEET

    how do to change these place names
    administration
    Logout
    posts RSS
    Comments RSS
    www.remarpro.com

    HELP ME

    Please open a new thread as this one is resolved and not related to what you are asking. (Open a new thread from the main list)

    When you do open it, could you explain what you want to change (are you wanting to translate them, for example)?

    how to change menu bar background color? help me explain how to do code

    This is answered above.

    hi friends i m new here can you anyone help m. i have a wordpress blog addabusiness.wordpress.com. i want to change foreground color. how to change it.

    i change color go head-
    Appearance- custom design- color – foreground color Black to brown. its changed here but not changed on bolg.
    any one help me?

    @inderchauhan11: I’m sorry but these forums are for self-hosted WordPress sites only. Please try asking your question on https://en.forums.wordpress.com/

Viewing 15 replies - 16 through 30 (of 30 total)
  • The topic ‘Background colour’ is closed to new replies.