Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
This link is temporary because for now it's a Local by Flywheel live link, and the site is local and still in progress.?
Here's the link: http://c6c54be8.ngrok.io/
If you look on the homepage in the right sidebar you'll notice the "popular" posts section with the numbered posts. For some reason, I can't figure out a CSS solution for changing the circles around the numbers to squares, nor can I determine how to change the background color to black. In essence, I can't isolate the element to alter using CSS.
Can anyone help?
Thanks!
Chris
1 Answer
- ChrisLv 73 years agoFavorite Answer
It's a pseudo element, an ::after attached to the div containing the image.
Use
.mvp-trend-widget-img::after {
-webkit-border-radius: 0 !important;
border-radius: 0 !important;
background-color: #000 !important;
}