Home › Forums › Theme support › Newhome Navigation Menu & Logo
Tagged: Move Logo, Move Navigation Menu, Newhome
This topic contains 12 replies, has 2 voices, and was last updated by 7Theme Support 10 years, 10 months ago.
-
AuthorPosts
-
Hello,
Hi, we’re using the Newhome theme for our client, and they want us to be able to do a few things:
1) We would like to move the Navigation Menu over to the right
2) We would like to move the Client Logo to be left and in line with the Navigation menu
We don’t see these options available in the Theme Appearance Options.
Can you assist?
Thanks!
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;
}Hi,
Thanks so much for your help with the Navigation menu – worked great!1) As far as the logo placement goes, we want it to line up with the navigation, appearing on the left of the menu.
Can you help with that?
2) Can you also walk me through how to add a Cufon Font file?
I generated a Cufon font file in js and tried to upload it, but I must not be doing something right.
Thanks much.
Hi,
Sorry, one other issue I’m seeing:We’re using a Featured Image on one of the interior pages.
The image shows up fine, but it looks like there’s a small shadow caption box floating across to the left when the page loads.
We’re not using a caption on this.
How do I remove this shadow/caption box?
Thanks again.
Ok, then please go to WordPress admin -> Appearance -> Theme Options -> General -> Extra CSS Content and add this:
#image_header .featured_image_description, #image_header .featured_image_caption {
display:none !important;
}This will remove the captions…
On the other hand, if we did want to use the caption feature, where is this managed?
If you want, you can remove it only for specific pages. For example: if you want to remove the caption only on the page with the id 34, then you can use this code:
body.page-id-34 #image_header .featured_image_description, body.page-id-34 #image_header .featured_image_caption {
display:none !important;
}Great, that worked to remove it.
Now, if we did want to add a caption on certain images, where do you do this?
Also, per one of my previous messages, are you able to provide a way to line up the logo with the navigation menu, keeping it on the left?
Sorry for all the questions!
Hi, if you want the captions i.e. on page id 55, just add this code:
body.page-id-55 #image_header .featured_image_description, body.page-id-55 #image_header .featured_image_caption {
display:initial !important;
}I think line up the logo without changes in the header.php is not possible, we’ve tried it with CSS, but it’s not working. Also, if we solve it with css then it’s not responsive…
Hi,
Thanks for the caption info.For the Logo:
Is there a way to put the Logo in the div.inner section somehow?The client doesn’t like that the logo is in a section by itself and there’s a ton of white-space.
Can you offer up alternatives to the Logo placement?
I.e.
Is there a way to put a static logo in the slider container, i.e. Top Left corner?We thought there would be a little more flexibility with this theme, which is why the client picked it.
“Is there a way to put the Logo in the div.inner section somehow?”
Yes, of course. You can open the header.php file and replace the
"<div id="brand"> ...</div>
in the .inner section of the<div id="overheader"> ...
“Is there a way to put a static logo in the slider container, i.e. Top Left corner?”
No, without some changes in the php files it’s not possible.
Hi,
Can you tell me how to make the pages scaleable based on the amount of content that’s on the page?
For instance, We don’t have a great deal of text on our home page so a lot of white-space is showing up. I think the min height is set at 350px. I tried to over-ride it but it didn’t take.
Thanks!
Hi,
you are right, the content area by default has a min-height of 350 pixel.
Please go to WordPress admin -> Appearance -> Theme Options -> General -> Extra CSS Content and add this:
#content {
min-height:0 !important;
} -
AuthorPosts
You must be logged in to reply to this topic.