saguaros Okay you had added the code to the top of the custom.css as the following:
/*Dropdown menu on mobile*/
.t3-mainnav .t3-navbar-collapse .navbar-nav .dropdown > a .caret {
position: absolute;
top: 40%;
right: 12px;
}
I have now added the @media part so that it now reads:
/*Dropdown menu on mobile*/
@media (max-width: 480px) {
.t3-mainnav .t3-navbar-collapse .navbar-nav .dropdown > a .caret {
position: absolute;
top: 40%;
right: 12px;
}
}
We have tried again using different browsers and clearing the cache but it still does not seem to work. Please help.