Okay
  Public Ticket #1965027
Change menu font
Closed

Comments

  • Constiart started the conversation

    Hi,

    thanks for your help the changes works!

    Just its not possible to change the font in Elementor, its not working nowhere.
    I want to change the font of the menu, how is that possible?

    I would like to use a adobe font called Quatro Black, its a possibility to integrate this?

    -

    Also there is a point in the Artworks in the "menu“ how can i delete him or change his color?

    I would be happy and done with it if you would help me.

    Thanks in advance for your time and help!

    Best wishes,

    Andrei

    -----------------------------------------------------------------------

    Hi Andrei,

    I am very sorry for the late reply, we were not working on the weekend.

    To remove the frame please add the following style in Appearance > Customize > Additional CSS.

    @media (min-width: 768px) {     header.primary-header.large-header nav ul {         border: none !important;     } }

    To change the hover color, simply add the following style.

    header.primary-header.large-header nav ul li.menu-item-has-children ul li a:hover {     color: your_color !important; }

    As for the third one, that is built on Elementor, you can change it via Elementor.

    Feel free to ask for anything you need.

    Kind Regards


  •  675
    Neuron replied

    Hi,

    To change the fonts in Thorium, please install and activate the plugin Easy Google Fonts for advanced usage, you'll be able to change the overall fonts easily via the plugin.

    - Video URL

    Or if you want simply to include that font, include it on your WordPress and then change it via Custom CSS.

    This is how you include a font in your WordPress, the following CSS needs to be added at Appearance > Customize > Additional CSS.

    @font-face {
        font-family: 'debssite';
        src: url('fonts/debssite.eot');
        src: url('fonts/debssite.eot?#iefix') format('embedded-opentype'),
        url('fonts/debssite.woff2?') format('woff2'),
        url('fonts/debssite.woff?') format('woff'),
        url('fonts/debssite.ttf?') format('truetype'),
        url('fonts/debssite.svg?') format('svg');
        font-weight: normal;
        font-style: normal;
    }

    You should simply upload the .eot or .woff files in your WordPress and replace them on the font face, then down below this code, this is the selector for the menu.

    header.primary-header nav ul li a {
        font-family: your_font !important;
    }

    Also, to remove the dot from the parent of dropdown, simply add the following style.

    header.primary-header nav ul li.menu-item-has-children > a::after {
        display: none !important;
    }

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.