background color of logo

  • Unknown's avatar

    hello, when i inspect website in the logo section where i want to change the color i find
    .bg-white { background: #f2f2f2; }

    when i change it in inspect menu, the color changes no problem, but
    when i edit css in editor nothing happens, the color is still the same

    the background is located in structure section of the theme

    /* ——————————————————————————– */
    /* 2. Structure
    /* ——————————————————————————– */

    .section {
    padding: 60px 0;
    display: block;
    }

    .big-padding { padding: 80px 0; }
    .medium-padding { padding: 40px 0; }
    .small-padding { padding: 20px 0; }
    .no-padding { padding: 0; }

    .bg-white { background: #f2f2f2; }
    .bg-light { background-color: #fafafa; }
    .bg-red { background-color: #ca2017; }
    .bg-graphite { background-color: #222; }
    .bg-dark { background-color: #111; }

    .bg-image {
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    }

    .section-inner {
    display: block;
    width: 1140px;
    max-width: 90%;
    margin: 0 auto;
    z-index: 2;
    }

    .section-inner.light { width: 900px; }
    .section-inner.thin { width: 700px; }

    .wrapper-inner { position: relative; }

    can you help me? :/

  • Unknown's avatar

    Hi jandlutko

    Can you please provide the Site URL so that i can suggest you the CSS code for that?

  • You could try making the style declaration more specific by adding another element, class or ID from on of the elements wrapping the one with the class .bg-white.
    As a crude example simply adding body to the declaration might work
    body .bg-white

    When you look at it via the inspector can you see your declaration overridden which would support the above theory.

  • Sorry, full declaration here:
    body .bg-white { background: #f2f2f2; }

  • Unknown's avatar

    Hi @jandlutko, I’m not seeing any WordPress.com sites associated with your username, so I suspect you are talking about a self-hosted WordPress installation.

    I would suggest asking for help from the theme author directly or ask in the volunteer-based WordPress.org forums.

    The differences between WordPress.com and WordPress.org.

    If by chance you are talking about a WordPress.com site under a different username, please provide a link to it for us.

  • The topic ‘background color of logo’ is closed to new replies.