[email protected] Posted August 3, 2020 Posted August 3, 2020 I am trying to make the border around the images in my slideshow thicker, but no matter how I adjust the CSS for the image class, it stays the same. .beerImage { width:250px; height:250px; border-radius: 50%; border-width: 400px; <!--I have tried numerous other numbers and percentages--> border: solid; border-color: brown; } the attached photo is a screenshot (that is cropped) of what I am trying to solve. it is obvious that the border that you see around the picture is most definitely not 400px, which I know is a bit much, I am just trying to show that it is not adjusting.
Sherin Posted August 13, 2020 Posted August 13, 2020 You can use border-image-width instead of border-width. border-image-width definitely works for whatever you try on border with image.
dsonesuk Posted August 13, 2020 Posted August 13, 2020 Unfortunately the op does not want a image as a border, but a solid color. Either it still using the original css, in cache/history, or the border width is set somewhere else where it has a higher hierarchy than your border width. Inspect the img element to see if this is the case or try using !important with border-width: property value; NOTE: The comment you used is for html only! If such a comment exists in css instead of the correct /* css comment */ it will break your css.
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