Custom CSS not working, even with !important
I want to change the 'top' and 'right' values for the below CSS. In the element inspector, it says the CSS is found within index.php rather than any CSS file, but there's nothing in the index.php file when I search for '#Top_Bar' . I've tried using !important in the custom CSS, but that didn't work.
@media only screen and (max-width: 959px)
#Top_bar a.responsive-menu-toggle {
top: 28px;
right: 10px;
}
@media only screen and (max-width: 959px)
#Top_bar a.responsive-menu-toggle i {
font-size: 30px;
}
I also need to change the above top/right values when the screen size drops below 768px, but even with !important added to the custom CSS in BeTheme Options, it is not supplanting the code coming from index.php.
Comments
css's are not in index.php file. The inspector says like that because css is loaded directly in the code, not in file. So if you want to edit those css's, you can type your own code under Theme options > Custom CSS & JS > Custom CSS section and your code will overwrite the default one.
Thanks!