Locate main navigation menu above logo and widen footer feature
-
I wonder if someone might be able to help with two problems. I am pretty new to wordpress but am able to make CSS amendments etc with a little help.
On this page http://www.keleca.com/cms/ I want to move the menu to above the logo which is top left. I have moved it so it floats left but when i do that the menu just sits to the right of the logo when i want to put it above the logo.
On the footer, I wanted to widen the first feature titled ‘close protection’ so its wider than the other two features in the footer. I have tried to change the width but when i change it they all change width. i am not sure how to change the left feature only leaving the other two features to the same width.
i appreciate any help greatly. Clearly the site is far from finished but these two things are driving me nuts i just cannot figure out how to.
Thank you.
-
The problem you have with the menu is that is the way it is written in the template, so you would have to amend the template to put the menu above the logo. Then style accordingly.
The footer…so you not have a section in your themes options to change the layout of the footer widgets?
If not, your theme changes their widths when the screen size hits 1000px wide. So this css targets screens above that range, I am suggesting using a media query here to stop the width remaining on smaller screens…otherwise the whole layout will get thrown about.
@media screen and (min-width: 300px) { .footerwidget:first-of-type { width: 470px; } }Firstly my apologies, i should have stated that I am using WordPress 4.2.2 and the theme used is CleanPort-Lite.
It seems I may have some big problems moving the menu then. No i have not found anywhere in the theme options to change the footer widgets. As I said I am pretty new to wordpress so it may be an option I just may not know where to look.
Thanx
Also, my previous post was incorrect, you need to change the value where it says “min-width” to 1000px, rather than the 300px I left there by accident.
Add this into the cusom CSS area if you have one, or at the bottom of your style.css file if using a child theme
Thanx adding that little piece of code worked wonders. Just a small tweak needed now to reduce the padding to the right of the 1st footer image..
Still stuck with trying to move the nav menu above the logo.
Appreciate your help ‘innuvo’ greatly.
The padding to the right of the image is because the image is within a piece of code that says “one_half” – if you are using a shortcode i would suggest changing that.
Or alternatively find an image that fits the gap better
The topic ‘Locate main navigation menu above logo and widen footer feature’ is closed to new replies.