Hi Jane,
Please note that the code provided previously is not meant to work on all sites because the CSS code provided have the ubermenu ID specified and the menu ID would most likely be different from one site to another.
For example, https://rediresults.com/, the code you are using which works is:
#ubermenu-main-344-primary-2 ul.ubermenu-nav > li.ubermenu-item {
width: 12.5%;
text-align: center;
}
This is because the menu ID for rediresults.com
is ubermenu-main-344-primary-2
which is specified in the code above. If you copy the same code to my.rediresults.com
, it will not take effect because the menu ID for my.rediresults.com
is not ubermenu-main-344-primary-2
but ubermenu-main-346-primary-2
, thus, the code you need to use is:
#ubermenu-main-346-primary-2 ul.ubermenu-nav > li.ubermenu-item {
width: 16.6666%;
text-align: center;
}
It would be best to learn a little bit about CSS so that you will be able to get the code working in case you want to copy it in different site.
https://www.w3schools.com/css/css_intro.asp
Hope this helps.