• Resolved beholdthe1trueking

    (@beholdthe1trueking)


    Greetings,

    The built in customization tool only allows me to alter so much with it so I’m trying to make some changes to it with code but I have limited code knowledge, and the websites I’ve worked on were outside of WordPress. I’m working on a WooCommerce store that I’m essentially modeling after https://www.givenchy.com. I’m going step by step but right now a change I need is to center the logo on mobile like it is on desktop. I also would like to be able to mess around with the food of the header categories, perhaps making them bold. If you could please lead me in the direction of what code I should add, and where/how to ad it, it would be greatly appreciated.

    Thank you in advance.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello @beholdthe1trueking,

    Please add the following CSS code in the Appearance > Customize > Additional CSS section of your WordPress Admin dashboard:

    /*--- CENTER ALIGN LOGO ON MOBILE --- 
    -----------------------------------*/
    @media (max-width: 768px) {
    	.navbar .title-logo-wrapper {
    		margin: 0 auto;
    	    padding-left: 43px;
    	}
    	.navbar-toggle-wrapper {
    	    margin-left: 0;
    	}
    }

    Could you please explain what you mean by the food of the header categories? Do you mean the font? If so, you can make the menus in the header bold by adding this code to the Customizer:

    /*--- HEADER NAV TYPOGRAPHY ---
    ------------------------------*/
    .navbar .navbar-nav>li a {
    	font-weight: bold;
    }

    Keep in mind that some themes will allow you to make additional changes, such as changing the font weight (e.g., from normal to bold), through the Customizer. One example is https://www.ads-software.com/themes/astra/.

    Also, I recommend asking for help in future at https://www.ads-software.com/support/theme/hestia/ so the theme’s developers and support community who know the Hestia theme best can help you.

    Thread Starter beholdthe1trueking

    (@beholdthe1trueking)

    Thank you very much this is what I was looking for.

    You’re welcome! Happy to help!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Theme Changes’ is closed to new replies.