Home › Forums › Theme support › Newhome Navigation Menu & Logo › Reply To: Newhome Navigation Menu & Logo
Hi,
thank you for the purchase. There are no options for this in the theme options, so we have to find a solution with css.
1. Navigation
Please go to WordPress admin -> Appearance -> Theme Options -> General -> Extra CSS Content and add this:
header.fleft {
float:right;
}
This move the navigation to the right.
2. Logo
Do you want to move the logo to the left or to the right? Because it’s already to the left.
If you want to move it to the right, insert this code in Extra CSS Content
#brand {
float:right;
}
#afterbrand {
left:0;
right:auto;
}