+ 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
8 Antworten
+ 4
@Fasial thank u very very much pro
+ 4
@Fasial do u have an account on whatsapp or.... I have some question
🙄
+ 4
@Fasial
Ok pro.. So how i can use icon (🏦) like this or... On this cod
+ 4
No. With the pc how can i Writing the cod i try (<i class=" fab fa-affiliatetheme" ></i> but nothing show
+ 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:
+ 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!
+ 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:
+ 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>