0

change theme color

Is it possible to change the  grey ribbon in horizontal menu bellow the company logo into other colour? for example burgundy 

5 replies

null
    • Forumbee
    • 1 mth ago
    • Reported - view

    Hi  , thanks for your question! 

    Yes, we can definitely change the color of the horizontal menu. I've applied the change for you, switching it to burgundy as requested.

    If you'd like to make color adjustments like this yourself in the future, here's how:

    1. Access your site's CSS:

    • Go to Admin > Themes > CSS
    • Paste the following code into the CSS area:
    .site-nav {
        background-color: #8e2b32; /* This is the color code for burgundy */
    }

    2. Change the color code: Replace #8e2b32 with the hex code of your desired color. You can find hex codes using an online color picker tool.

    Let me know if you have any other questions!

      • Charis_Kominatou
      • 1 mth ago
      • Reported - view

      thank you. Very much appreciated :)

      • Charis_Kominatou
      • 1 mth ago
      • Reported - view

        Can I also change some font colors? This is going to be very helpful too. I want to change the category fonts into red and also the topic headline

      • Forumbee
      • 1 mth ago
      • Reported - view

       Yes, you can change the colors of these items. Here is the CSS to do that:

      /* Color of the category name on the home page. */
      .idx-category__name {
        color: red;
      }
      
      /* Color of topic titles in the category. */
      .topic-summary__title {
        color: red;
      }
      
      /* Color of the topic title on the topic page. */
      .topic__title {
        color: red;
      }
      

      Replace 'red' with the hex code of your desired color.

      • Charis_Kominatou
      • 1 mth ago
      • Reported - view

       Thank you, Very much appreciated

Content aside

  • Status Answered
  • 1 mth agoLast active
  • 5Replies
  • 14Views
  • 2 Following