Posts by Klaylton Fernando • 31 points
3 posts
-
0
votes2
answers100
viewsA: Alignment of the Dropdown Menu
It would be helpful if you post a snippet of your code here. But looking at the picture, possibly what’s happening is that you forgot to reset the padding-left of the parent element. Try the…
cssanswered Klaylton Fernando 31 -
3
votes3
answers14615
viewsA: Change remote git repository
You can remove git remote remove origin add a new one with the new address git remote add origin git://suaUrl Change the remote directory git remote set-url origin git://suaUrl Or you can rename it…
-
-1
votes2
answers61
viewsA: How do I div fill the corners of the screen?
This space corresponds to the padding standard that browsers apply to BODY, to solve, just reset with the following CSS statement. body{ padding: 0; }