+ 1
Could use help for my code
I would like to know how to get a smaller hole between "links" and the black header padding and how to get the grey div to the right hand side. Thanks.
3 Answers
0
Use the CSS margin property to fix the space (also padding of elements can effect the distance. As for getting the div to the right hand side, you can align it to the right. However, from seeing your code, what youâre looking for may just be increasing the divâs width. Also, try spacing out your CSS elements... they seem a bit cluttered.
0
Thanks, that will help a Lot.
- 1
Add this to remove the margin between your links
ul {
font-size; 0px;
}
ul > li > a {
font-size: 14px;
}