Hello friend. As always, I want to thank to developers for this great product. I need small help.
In menu I created new menu and four menu items. I want the first one to be normal, second – bold, third – normal, fourth – bold.
I made a common css rule fol all in css file:
.designer-font {
font-family: var(–menu-font);
font-weight: var(–font-weight-normal);
text-transform: uppercase;
}
Then I created another rule for bold elements in CSS file
.designer-font-bold {
font-weight: 600;
}
Then I entered “edit item” and understood that I need to put my rule in field “CSS class”
But how to add it to field? I tried “.designer-font-bold”, “designer-font-bold” (without dot), “.designer-font-bold {font-weight: 600;}”
Then I click save changes. But in code inspector I see no changes and no adding of class.
What am I doing wrong?
Help please))