In this cod i was us bootstrap. But i build with html cod. I have Problem when i click the (home) it seems White interface whyyy | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

In this cod i was us bootstrap. But i build with html cod. I have Problem when i click the (home) it seems White interface whyyy

Web https://code.sololearn.com/Wo8H4857rpm8/?ref=app

19th Mar 2018, 1:11 PM
‎ahmed_alattabe
‎ahmed_alattabe - avatar
8 Answers
+ 4
@Fasial thank u very very much pro
19th Mar 2018, 9:55 PM
‎ahmed_alattabe
‎ahmed_alattabe - avatar
+ 4
@Fasial do u have an account on whatsapp or.... I have some question 🙄
19th Mar 2018, 9:57 PM
‎ahmed_alattabe
‎ahmed_alattabe - avatar
+ 4
@Fasial Ok pro.. So how i can use icon (🏦) like this or... On this cod
19th Mar 2018, 10:05 PM
‎ahmed_alattabe
‎ahmed_alattabe - avatar
+ 4
No. With the pc how can i Writing the cod i try (<i class=" fab fa-affiliatetheme" ></i> but nothing show
19th Mar 2018, 10:15 PM
‎ahmed_alattabe
‎ahmed_alattabe - avatar
+ 2
The reason the background is white is because in your hover pseudo element in the CSS, you've set the whatever is in the tag a to turn pink, while the background stays its default colour (which in this case is set to white). To set the background to a different color, you can set the background-color element to the a tag in the hover pseudo element, changing the colour of the background when the mouse hovers over the element: .nav li a:hover{ color: #c1c; background-color: #000; } Hope this helped! d:
19th Mar 2018, 9:42 PM
Faisal
Faisal - avatar
+ 1
I do have an account, but I would rather not give it out. Of course, you can still ask me any questions on this thread if you want, I'll be happy to answer anything you have!
19th Mar 2018, 10:00 PM
Faisal
Faisal - avatar
+ 1
If you're on a mobile device, then you can just type it directly into the code and it should be displayed. There really aren't too many limitations when it comes to what HTML can display, so any emojis should work. d:
19th Mar 2018, 10:07 PM
Faisal
Faisal - avatar
+ 1
Well, the <i> tag is just a formatting tag, and is used to make text look italic and fancy-ish. The reason nothing is showing up within it is because you have nothing within the tag itself, so it isn't displaying anything. Try doing something like this and see if it works: <p>Hi my name is <i>Steve</i> and I live on a <i>potato</i> farm.</p>
19th Mar 2018, 11:01 PM
Faisal
Faisal - avatar