• Resolved loiruca

    (@loiruca)


    HI all, I just spent hours trying to figure out why my tagline is not changing no matter what I do. I’ve used all my resources! I am adding the changes into the child theme CSS and nothing changes… also tried changing the css related to the skin I picked, in this case blue2.css, nothing… I dont see any changes! Child Theme is activated! I checked it in 3 different browsers and nothing.. here is my child css code:

    @import url(“../customizr/inc/assets/css/blue2.css”);

    \.navbar-wrapper .navbar h2, h2.site-description {
    /* Change (red) font color */
    color: red;
    /* Change (Garamond) font family */
    font-family: Garamond;
    /* Change (20px) font size */
    font-size: 20px;
    /* Change (19%) move to left */
    padding-right: 19%;
    /* Change (normal) italic-normal-oblique */
    font-style: normal;
    }\

    Please, can someone shed a light here! This is supposed to be an easy change, not sure what’s going on or what I am doing wrong! I know CSS! The site is in coming soon mode, so you can’t see it, but if you can help me I will be happy to give you login info. Thanks in advance.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Does your code really have these \ before .navbar... and after }.
    If yes.. remove them.
    Also, with customizr, you do not need to import the parent skin, is something the theme already cares.
    So replace the code above with this one:

    .navbar-wrapper .navbar .site-description, .outside .site-description {
    /* Change (red) font color */
    color: red;
    /* Change (Garamond) font family */
    font-family: Garamond;
    /* Change (20px) font size */
    font-size: 25px;
    /* Change (19%) move to left */
    padding-right: 19%;
    /* Change (normal) italic-normal-oblique */
    font-style: normal;
    }

    Though I don’t think you really want that padding-right, specially for the mobile tagline (.outside .site-description).

    Hope this helps.

    Thread Starter loiruca

    (@loiruca)

    Hi thanks for your reply. I figured it out and it now works! It was the cache. There is something there that the previous developer added through GoDaddy settings I guess that flushes the cache. I have to click on that in order for the page to show changes.

    Glad you solved ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Need help with Tagline changes’ is closed to new replies.