1
I’m having a hard time making some adjustments on a page
I’m using Bootstrap3, and I can only make settings on Clientside
I’d like to remove the box shadow from a jumotron.btn
box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18),0 4px 15px 0 rgba(0,0,0,0.15)
and vary the size of the container
of 70%
for 40%
in which file should I make these changes? no CSS
pattern did not find.
when I open the console I find this link,
http://cdnjs.cloudflare.com/ajax/libs/materialize/0.96.1/css/materialize.min.css
I’m new to this part of the Web, if you can shed some light.
You can make your own css to overwrite these properties, so you don’t touch the original files and can better understand what is being/or not being changed.
– celsomtrindade
I tried to use some ! Mportant but unsuccessfully
– Guilherme Lima
You need to see the entire file hierarchy. In some define only
.container {}
it won’t help if he has a deeper hierarchy, ex:.section .row .container {}
and!important
also not the best way out. Another thing that can interfere is the file load. If I’m not missing the memory, your css should be loaded after bootstrap css, so you can overwrite the files.– celsomtrindade
I was able to remove the shadow, but the width problem I still can’t change, I believe it’s the same idea.
– Guilherme Lima
Probably. Try searching for the src file equivalent to the css you are loading, it will be easier to identify. Because what’s in load is the .min.css that’s harder to maintain.
– celsomtrindade
You tried to look in expanded file?
– VitorLuizC
Guilhermelima do as @Celsomtrindade said, overlap with a separate CSS (for example, declared after Bootstrap.). The important thing is that yours be as specific as possible for your instruction to override the original. The
!important
is usually a resource to use in more extreme cases. The browser inspector usually shows the entire CSS hierarchy, use it to determine where to move.– Bacco