OK shadow here is what you need to do to center the navbar.
Go into the slick black template and edit the Main CSS. Scroll down the the very bottom and in the Additional CSS Definitions in the bottom box look for this CSS code:
#tab
{
margin:0;
top:0;
}
and change it to this code:
#tab
{
margin:0;
top:0;
margin-left: 25%;
margin-right: 0%;
}
You can play with the margin-left and margin-right % until you get it how you want. I believe 25% for left and 0 for right should get you going good.
Good luck and I hope this works for you.
|