The link only works when the user cursor is directly on the anchor tags of the link. In other words, if users hover somewhere else in the social links container, the link will not work.
asdiAdi
@asdiAdiAll comments
- @benhyhSubmitted 6 months agoWhat specific areas of your project would you like help with?
- @aditt0077Submitted 6 months ago@asdiAdiPosted 6 months ago
This is really well done, I guess the only thing you missed is to change the color of the description into grey.
0 - @A-RealistSubmitted 6 months agoWhat are you most proud of, and what would you do differently next time?
After a long break, I'm finally starting to learn Web Dev and I'm quite happy with the result. I'll try to make other projects mobile-responsive.
What specific areas of your project would you like help with?There are mainly 2 problems that I was unable to solve:
-
The QR code image has some space from the top which I'm unable to get rid of. I've a padding of 25px which gave a nice margin to the entire card but the top has a little more space than required.
-
The text inside tag: is not aligned like it is in the original design. I could have used 3 tags but maybe it wasn't the best practice.
@asdiAdiPosted 6 months agoI think it's better to put some alt text on the image. Also make the card fixed width so it won't shrink on smaller screen sizes.
1 -
- @ValarieOyiekeSubmitted almost 2 years ago
I wasn't able to align the div with the prices at the center with
display: flex; align-items: center;
so I usedalign-items: baseline
instead.Any help on what might have caused it not to work will be highly appreciated.
@asdiAdiPosted almost 2 years agoHi Valarie Oyieke, it seems that the
p
margins inside the.price
class are the root of the problem.- First, add a
.price > p
selector and addmargin: 0
property inside it - Then add a
margin-top: 32px
property inside the.price
class - Finally, you can change the
align-items
property intocenter
inside the.price
class
I hope this helps you and Good luck with future challenges!
Marked as helpful1 - First, add a