Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Transparent Hovering Image Help Re: Transparent Hovering Image Help

#128658
Paulie_D
Member

You can ignore all the previous stuff I said about pseudo elements etc. as I thought you were talking about something else not related to the front page.

Line 775 has the background color….it’s set to orange at the moment. If you want it to be slightly transparent you **can’t** use opacity there are it will affect everything in the [a] link including the text.

You will only have to change the background color to something like

background: rgba(255,165,0,0.5)

where the 0.5 number is the amount of opacity you want on that color.

That’s the only thing you need to change.