Hi,
I just wanted to ask how to remove the rounded corners from the images on my site, such as the portfolio images, etc.
Thanks!
Hi,
I just wanted to ask how to remove the rounded corners from the images on my site, such as the portfolio images, etc.
Thanks!
Hey,
could you provide a link and specify which images? You're looking for things related to border-radius in CSS files .. to give more specific instructions I'll need more info.
Hi,
My link is http://www.identityconsulting.co.uk/Newsite/
I want to remove the rounded edges from the feature image on the front page, the images on the portfolio page and entries, and the blog entry images.
Hey,
in css/custom.css add:
#top .slideshow {
border-radius: 0px;
}Hmm, added to quickcss, but doesn't seem to affected anything. My assumption was that I'd have to put in a seperate css alteration for each type of image I wanted to remove the edges from?
Try following code:
.rounded, .sidebar, #top .slideshow {
border-radius: 0 !important;
}
.rounded_corner{
background: none !important;
}Worked perfectly, thankyou!
Glad that I could help you :)
You must log in to post.