Hi Young JC,
You have an awesome website. and you can have it as you want !
To move the navigation menu to the top right corner, just follow these two steps:
1- in your css file (style.css), look for a property that looks like this (search for “#inner-header”) :
@media only screen and (min-width: 800px)
#inner-header {
position: relative;
}
Just add these two lines :
float: right;
margin-right: 30px;
This should look like this:
@media only screen and (min-width: 800px)
#inner-header {
position: relative;
float: right;
margin-right: 30px; /* increase or decrease this to the preferred value*/
}
2- Look for this code block in your css file (search for “.menu”) :
@media only screen and (min-width: 800px)
.menu {
float: right;
max-width: 672px;
width: 400px;
margin-top: 62px; /* Decrease this value to the preferred value : 32px looks good*/
}
Let Me know if you still having any problem.
Cheers!
Rachid