Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #988349
Custom Styling
Closed

Comments

  •  2
    hogerton started the conversation

    I would like to remove the border from active links, specifically from the URL listed above in which I am using a button in the navigation. 

    I discovered the classes/ids that contains the styled border, however once I modify the CSS in the custom styles section of a given page, or in the child theme, the code reverts to the typical styles once saved and reloaded live.

  •  2
    hogerton replied

    Also, this is not related to the same issue but I noticed another major issue. All of my icons on the site are being split in half! This seems to be an issue exclusively with Google Chrome. Please look at the icons and let me know what can be done about this ASAP:

    http://dev-introhive.pantheonsite.io/home/what-is-introhive-draft/

  •  7,092
    Oliver replied

    HI!


    1. pls. use following css:

    #site-header:not(.shrink) .header-colors-light.header-style-3:not(.header-layout-overlay) #primary-menu.no-responsive > li.menu-item-active > a {
        border: none;
    }

     

    2. Pls. press ctrl + 0 in your browser.

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  2
    hogerton replied

    Thank you Gregor,

    The code you gave me is great, however when I scroll down, the header changes to the light version and the box is still showing there.

  •  7,092
    Oliver replied

    HI!

    Sorry I forgot about fixed header, pls. add this css:

    #site-header.fixed.shrink #primary-menu.no-responsive > li > a {
        border: none;
    }
    

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  2
    hogerton replied

    OUTSTANDING! Thanks Gregor. One last question: I am having trouble with the header text being in all caps all the time. Is there a way to adjust the settings for that so that I can type header styles using sentence case?

  •  7,092
    Oliver replied

    HI!

    Sorry, can you add some screenshots, what you need to change?

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  2
    hogerton replied

    Sorry if I was not clear. My issue is that all of the text for my Headings is in ALL CAPS. I would like the option for some of my headings to be in sentence case. In this screenshot, all of the headings are in all caps. 

    Does that make sense now?


  •  7,092
    Oliver replied

    HI!

    pls. add following css:

    h1,
    .title-h1,
    h2,
    .title-h2,
    h3,
    .title-h3,
    h4,
    .title-h4,
    h5,
    .title-h5,
    h6,
    .title-h6,
    .title-xlarge {
        text-transform: none !important;
    }

     

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver