• Resolved Tonaljim

    (@tonaljim)


    Hi

    Love the plugin!! I am trying to change the background/title/body text colour on my menu from my theme defaults. I have reviewed all of the questions on the support menu and have tried inserting the code you suggested for changing color into my Custom CSS and the only change to my menu is that the menu item descriptions have disappeared. Can you please provide me with a solution. thanks!

    https://www.ads-software.com/plugins/food-and-drink-menu/

Viewing 4 replies - 1 through 4 (of 4 total)
  • If you send me a link to your site, and let me know which components you want to change the colors of, I can probably provide some quick CSS code for you.

    If you send me a link to your site, and let me know which components you want to change the colors of, I can probably provide some quick CSS code for you.

    Thread Starter Tonaljim

    (@tonaljim)

    Hi Nate

    the link to my site is: https://www.mackwedding.devel.tonalgroup.com
    If you go to the Vendors tab and click on Varsity Catering, you will see that I have 4 menus set up as links to a popup window.

    I need to know how to change the background of the menu as well as the title and text. I can change the color of the text by using html code around the text but not the title of the category or the food name (ie. Entrée, Mackinac White Fish)

    I am launching this website on Oct 31, so I really need to get this figured out. If you could provide some assistance, that would be greatly appreciated.

    thanks
    Louise

    Hi Louise,

    If you want to change the background of all the menus, you can do so with the following CSS code:

    .fdm-menu {
      background: red;
    }

    Obviously, you’ll want to change red to whatever color you’d like. To target the section headings (title and text):

    .fdm-section-header {
      color: red;
    }

    TO target just the title of sections:

    .fdm-section-header h3 {
      color: red;
    }

    To target all of the text in the menus:

    .fdm-menu {
      color: blue;
    }

    This will change all of the text except the section titles, which you can target as described above.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changing background/title/body text colours’ is closed to new replies.