can somone tell me how to add that shining radius effect behind the images
Adhran
@adhranAll comments
- @GeekkyCoderSubmitted almost 2 years ago@adhranPosted almost 2 years ago
Use box shadow, first just add "box-shadow" with some random values and you can play around with the values using browser dev tool
1 - @MartinmessnerSubmitted almost 2 years ago
What did you find difficult while building the project?
I cant change color for :hover with images .svg
@adhranPosted almost 2 years agoThe problem is your using "img" tag in html instead copy and paste the svg code directly into your html, To change the svg color you need to select the "path" tag of the svg and set the "fill" property to white. (eg:- π svg> g > path { fill: white; })
Here I selected the "g" tag first and then the "path" because in the logo svg code the "path" tag is located inside the "g" tag but in other svgs(facebook logo, insta logo) the "path" is the directly located inside the "svg" tag
Marked as helpful0 - @DavidPokrajacSubmitted about 2 years ago
I had trouble with changing the color of the image. On footer for example, "Manage" logo with four dots had to be left in original state with orange color, whilst text color had to be changed to white color. I failed in that, making it all white. Some guidance or help on how I could have done that would be great. Also, if you have any question or feedback please feel free to post it in the comments.
@adhranPosted about 2 years agoThe problem is your using "img" tag in html instead copy and paste the svg code directly into your html, To change the svg color you need to select the "path" tag of the svg and set the "fill" property to white. (eg:- π svg> g > path { fill: white; })
Here I selected the "g" tag first and then the "path" because in the logo svg code the "path" tag is located inside the "g" tag but in other svgs(facebook logo, insta logo) the "path" is the directly located inside the "svg" tag
Marked as helpful1