Séane Posted February 13, 2019 Posted February 13, 2019 Hello, I am trying to customise the homeslider module, which is calling a jQuery Plugin stored in: ThirtyBees\js\jquery\plugins\bxslider\jquery.bxslider.css Everything I type in the global.css or if I create a specific css file within the module, inside of the theme, I can't override the css from the jQuery plugin. Basically I would like to remove the ::after tag in the CSS and change the width of the arrows, but the css from the plugin takes the lead. Any idea? Séane
tommat Posted February 13, 2019 Posted February 13, 2019 Try !important rule. example: p { color: red !important; } 1
tommat Posted February 13, 2019 Posted February 13, 2019 (edited) This works for me for arrows : #homepage-slider .bx-wrapper .bx-next, #homepage-slider .bx-wrapper .bx-prev{ top: 50%; width: 30px; height: 30px; } You must do this in yourtheme/css/modules/homeslider/homeslider.css Edited February 13, 2019 by tommat 1
Séane Posted February 14, 2019 Author Posted February 14, 2019 Hello tommat, Thank you for your kind help, the !important worked like a charm and I'll test the homeslider.css. Thank you, Séane 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now