Forum Replies Created

Viewing 15 replies - 1 through 15 (of 50 total)
  • dbking

    (@dbking)

    On line 2707 of your style.css file you’ll see this class:

    .section-header {
    margin-bottom: 44px;
    margin-bottom: 4.4rem;
    display: none;
    }

    In a child theme, you could change this to:

    .section-header {
    display: none;
    }

    That will hide the section-header and move everything else up.

    dbking

    (@dbking)

    Hi there. It’d be easier for us to help you if you post a link to your website.

    dbking

    (@dbking)

    Hi there. The way you apply a style to a certain area, rather than across your site, is by making sure you target an area specifically. Sometimes that means including two classes or a class and an ID. That way the style you create will only apply when BOTH classes are in play. So take a look at the relevant areas, “inspect element”, and then apply styles as needed.

    Something like this:

    .some-class .another-class {
    color: #333;
    }

    In the above example, this color would only apply when BOTH classes are in effect.

    dbking

    (@dbking)

    Please post a link to your site and we will try to assist.

    dbking

    (@dbking)

    Do you mean increase the font-size? If so, posting a link to your site can help us help you with styling it.

    dbking

    (@dbking)

    Hello. Yes, it is definitely possible. That would be a styling issue, and thus you’d make the change in your style.css file, or related style sheets (depending on the theme). Generally this involves finding the correct class and floating it left instead of right. Just be aware that you will likely have to adjust several related classes as a result. If you change one thing – especially something like a float, then other elements are usually affected. You can begin to find out which classes to adjust be right-clicking and inspecting element in the section where you’d like to make a change. That’ll help you determine what classes are in play for the change you’d like to make. Also, please be advised that it’s best to create a child theme when making a change like this – so that your changes aren’t overridden by a future theme update.

    Also, if you post the link here, we may be able to help point you in the right direction.

    dbking

    (@dbking)

    Hello,

    Do you happen to remember what changes you were working on prior to noticing this? Knowing that often helps to narrow down the root cause.

    dbking

    (@dbking)

    Did you enable the mobile view in your Jetpack settings? If so, you’ll want to connect via the Jetpack link, and disable the option there.

    dbking

    (@dbking)

    Hi there,

    It does that to escape those items so they aren’t misinterpreted when the code is parsed. Certain characters, like quotation marks, have computer code meaning, and need to be escaped so that they are interpreted as part of the text, rather than as code. For instance, in the case of quotes, they are used in PHP to signal the beginning and end of a string. So you can see that if a quote mark you add isn’t escaped, it could confuse the parsing of the code.

    dbking

    (@dbking)

    Hi there,

    Woocommerce’s free plugin does all of that. Here’s the link:
    https://ww.wp.xz.cn/plugins/woocommerce/

    dbking

    (@dbking)

    There you go. Glad it worked for you!

    dbking

    (@dbking)

    Hi there,

    Please see my comment in regards to your other question re:changing the background color. In this case the class you want to address is this one:

    .pillbtn {
    padding: 1em 1.7em;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #fff;
    border: 0;
    border-radius: 30px;
    background: #cb2a2a;
    }

    Again, just remember the caveat about using child themes.

    Also, if you’re using any kind of css plugin – in addition to the standard css files that came with the theme – you may need to look there is you can’t locate the class you’re interested in editing.

    dbking

    (@dbking)

    Hi there,

    The top section background color can be accessed and changed via a class I will list in a moment. One way to make a change like this is to do a find and replace for the specific color value you’re trying to find in your css, and replacing it with the class you want. Just remember the general caveat about using a child theme.

    To get you started, the class that includes the background color of the top area is listed below:

    #site-navigation {
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background: #272e37;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    }

    dbking

    (@dbking)

    Hi there,

    It looks like you a css override happening somewhere. Did you check your admin to see if there are css class overrides in there?

    This is the class you want to edit:

    #site-navigation .menu > li.current_page_item > a, #site-navigation .menu > li.current-menu-item > a, #site-navigation .menu > li.current-menu-parent > a {
    background: transparent;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    }

    dbking

    (@dbking)

    On line 112 of your layout.css file you’ll find this class:

    #top ul.nav {
    font-size: .857em;
    }

    Use that to change the font size.

    And on line 119 you can change the color with this class:

    #top ul.nav > li a {
    padding: 1.387em 1em;
    color: #9f9693;
    }

    Just be aware of the policy around child themes and changes.

Viewing 15 replies - 1 through 15 (of 50 total)