You should be able to figure this stuff out for yourself, or atleast have a go. If you hover over the area you are interested in, right click to open the menu and select ‘inspect’. This will open the inspector. You will more than likely need to scroll up the html on the right to find the parent container. If you hover over the html it will highlight the area on your page to the left.
Just a BTW, you will want to look for specific class names. Don’t go with ‘widget’ or ‘small-block-grid-1’, as these are general styles that may well be applied to many elements on your pages. ‘.nasa-filter-variations-widget-wrap’, appears to be a more specific rule that applies to the filter menus, so seems a good choice.
P.S: thanks for sharing the tips, unfortunately, my technical skills is limited to Oracle Appl. tools, SQL, PL/SQL..etc. I have zero experience with web programming skills. The syntax under dev tools looks scary enough to read let alone formulating a custom code.
As I said, atleast have a try. Even if you can’t figure out how to style it, you could for instance come here and say, I think I have found the classname with inspector. I’ve tried giving it a background colour but it looks like this, and I need something different. It is worth trying to learn a bit about it. If you have a technical mindset, it shouldn’t be that much of a stretch
It needs to have those two classes to give it enough specificity/importance to overrule existing styles. .nase-filter-wrap won’t work.
Negative left and right margins e.g. margin-inline: -40px; drags the box out to full width (eye-balled), adding left and right padding e.g. padding-inline: 30px; squashes the content back in to line up with the content below. Again eye-balled.
The width is being set by the parent .row class. It has a max-width on it. The trouble is that the row contains the grid of product images below as well, so any settings will affect that too. I’ll have a think.
I don’t know if I’m looking at the same problem but you can use the box-shadow trick to extend backgrounds to the edge of the viewport on elements that aren’t that wide. It sounded like you were asking to do this?