Okay
  Public Ticket #2580113
To change food menu item color
Closed

Comments

  •  2
    Serovbe started the conversation

    Hi there!

    tell me pls how can i change food menu item line color?

    i've tried to add ".nectar_food_menu_item .item_description { color: #ffffff; }" to custom css code in salient panel but that was unsuccessfully(

  •  8,849
    Tahir replied

    Hey Again, Hope you had a Positive Weekend, 

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .nectar_food_menu_item.animated-in .item_description {
        color: #dd9933 !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  2
    Serovbe replied

    i've tried but it changes item description, i need to change line spacer color so i have tried myself and it works/ 

    here is css:

    .nectar_food_menu_item .line_spacer{
      border-bottom:1px solid #fff;
    }


  •  2,963
    Andrew replied

    Hi Serovbe,

    Try the following:

    .nectar_food_menu_item .line_spacer {
        border-color: red;
    }
    

    Hope this helps.

  •  2
    Serovbe replied

    thank you for your kindness my friend, but i've already solve that problem!