Priyansh Garg
Priyansh Garg
Sure @subhangi2731, you can start working on this.
@subhangi2731 See my comments on the issue #79. You can also see the implementation of test cases in this file as reference: https://github.com/garg3133/fossee/blob/master/roomslotbooking/home/tests/test_views.py Otherwise, the MDN documentation for which I...
Okay @subhangi2731, assigning it to you.
Sure @subhangi2731, where are you stuck at?
@nitinjaiswal7537 Seems like you didn't test anything. The email is not centred w.r.t the icon, click on email takes us to some non-existing web-page instead of opening an email client,...
@nitinjaiswal7537 The hover effect is not working because hover-effect of `a` is already white and instead of applying the new hover effect on the `a` tag (by putting the `.email`...
Where have you put the `.email` class? If you've put it in `p`, none of the above-mentioned alternatives would work.
With this code also, both the alternatives you suggested won't work. 1. It should be written as `a.email:hover` (no space between `a` and `.email` as both belong to the same...
Well, I used the following HTML: ``` [email protected] ``` and the following CSS: ``` .con-box1 .contact-us-email:hover{ color: #ff8c00; } ``` and it's working fine for me.
Okay @nitinjaiswal7537, you can do that. But how would you be able to test those changes? Maybe try hard-reloading your page (`Ctrl + F5`). Also, don't forget about other changes...