What's new

Welcome to the forum 👋, Visitor

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.

why Responsive Media Queries in styles.css don't work

vuevex

New member
Joined
May 26, 2025
Messages
1
Reaction score
0
HTML Coins
31
hello everyone,

I have a little struggle with changing background color of the drop-down menu on mobile size version. I managed to change for the desktop resolution, but the mobile version is a little stubborn :(

using "Inspect element" I can see it is;

@media (max-width: 768px) {
.navbar-fixed-top .navbar-collapse {
background: rgba(10, 10, 10, .9) !important;
}

with some reason I can not find this entry above in styles.css , not in bootstrap.css and nothing in woocommerce.css

all I want is to change this rgba(10, 10, 10, .9) in to rgba(255, 255, 255, 1)

I also added this in to "Additional CSS" section along with other entry's with changed colors but no luck ..

Please is there anyone here to help me to tackle this little problem ?

please view the site on victoryshopping.co.uk password; hello

Many thanks to all for any advise..

ALSO within styles.css there are Responsive Media Queries to configure, but nothing apply after changes ...


/* -------------------------------------------------------------------
Responsive Media Querries
------------------------------------------------------------------- */

@media (min-width: 600px) {
body.home .navbar-transparent {
padding-top: 15px;
padding-bottom: 15px;
background-color: #ff0000; !important;

}

.navbar-custom .sub-menu,
.navbar-custom .children {
display: block;
visibility: hidden;
position: absolute;
z-index: 10;
opacity: 0;
background-color: #ff0000;
}

.navbar-custom .open > .sub-menu,
.navbar-custom .open > .children {
visibility: visible;
opacity: 1;
background-color: #ff0000;
}

.navbar-custom .sub-menu .menu-item-has-children-toggle:after,
.navbar-custom .children .menu-item-has-children-toggle:after {
display: block;
position: absolute;
top: 50%;
right: 9px;
margin-top: -6px;
font: normal normal normal 14px/1 "ElegantIcons";
font-size: 9px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\45";
text-rendering: auto;
background-color: #ff0000;
}

.navbar-right .sub-menu,
.navbar-right .children {
right: 0;
left: auto;
background-color: #ff0000;
}

.navbar-nav > ul > li {
float: left;
list-style: none;
background-color: #ff0000;
}

.navbar-nav > ul li {
position: relative;
background-color: #ff0000;
}

.navbar-nav > ul li:hover > ul.children {
visibility: visible;
opacity: 1;
background-color: #ff0000;
}

.navbar-nav > li > a {
padding-top: 3px;
padding-bottom: 3px;
background-color: #ff0000;
}
 

Theme customization system

You can customize some areas of the forum theme from this menu.

  • Wide/Narrow view

    You can control a structure that you can use to use your theme wide or narrow.

    Grid view forum list

    You can control the layout of the forum list in a grid or ordinary listing style structure.

    Picture grid mode

    You can control the structure where you can open/close images in the grid forum list.

    Close sidebar

    You can get rid of the crowded view in the forum by closing the sidebar.

    Fixed sidebar

    You can make it more useful and easier to access by pinning the sidebar.

    Close radius

    You can use the radius at the corners of the blocks according to your taste by closing/opening it.

  • Choose the color combination that reflects your taste
    Background images
    Color gradient backgrounds
Back