Bert O
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Menu & Footer Display – full-width pagesCould not really see the problem as you have a splash page.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Twenty Seventeen Child ThemeDid you add a functions file in your child theme?
Your child theme should have (minimum) a stylesheet and a functions file.
So you want:
style.css
functions.phpThe function file should include the following:
<?php // Register parent style add_action( 'wp_enqueue_scripts', 'mychildthemename_enqueue_parent_styles' ); function mychildthemename_enqueue_parent_styles() { wp_enqueue_style( 'mychildthemename_enqueue_parent_styles', get_template_directory_uri().'/style.css' ); }- This reply was modified 8 years, 8 months ago by Bert O.
One solution would be to nest the menu so you do not have too many parent items. I am sure you already know this.
The other would be to add some custom css to extend the size of the menu wrap, this, however, will only work on large screens. No good for ipads etc.
@media screen and (min-width: 1139px) { .navigation-top .wrap { max-width: 1140px!important; } }I was just looking at your shortcodes and see you have item limits but no offset.
So for example, I have my shortcode:
[wp-rss-aggregator limit=”10″]
Then I add my code / banner ad / text – whatever it is that one decides to add and then continue with feed output by adding another shortcode but ignoring the first 10 posts which are already being displayed above.
[wp-rss-aggregator offset=”10″]
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Mobile Navigation Not Working in MobileTry adding:
button.menu-toggle { position: relative; z-index: 1; } #top-menu { z-index: 1; position: relative; }You will most likely need a few more lines of CSS to position it correctly.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Make logo picture roundWhat did you try?
Yes sorted it thanks.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Twenty twelve mobile viewDid you resolve this?
Is it the main menu you are referring to?
Has this been resolved? I see your website now has a responsive mobile menu?