I am quite new to webdesign and such. I decided to challenge myself during holidays and build my own artistic work website using Kadence theme and Gutenberg blocks. Unfortunately, I keep running into issues. This one i am not sure how to resolve on my own.
I was in the Customize panel adjusting my navigation bar both for desktop and mobile view. My desktop navigation bar was in the header, stretched horizontally, which worked well for me. I guess, I chose a wrong option and now my desktop view also has this mobile trigger. I don’t want that but I don’t know how to change it back to horizontal navigation. Please, help! And… Happy Holidays.
p.s. i don’t know coding. but I imagine the solution must be simple and I am not seeing it for a strange reason.
]]>I am quite new to webdesign and such. I decided to challenge myself during holidays and build my own artistic work website. Unfortunately, I keep running into issues. This one i am not sure how to resolve on my own.
I was in the Customize panel adjusting my navigation bar both for desktop and mobile view. My desktop navigation bar was in the header, stretched horizontally, which worked well for me. I guess, I chose a wrong option and now my desktop view also has this mobile trigger. I don’t want that but I don’t know how to change it back to horizontal navigation. Please, help! And… Happy Holidays.
p.s. i don’t know coding. but I imagine the solution must be simple and I am not seeing it for a strange reason.
]]>Thanks so much, love the theme,
Nicole
I recently modified my theme to support custom menus. I see that the custom menu now displays but it is vertical. Originally it was displaying horizontally. Perhaps I need to reference the new name of the custom menu in my css? Thanks in advance.
Using bootstrap 2.
site:
https://krystalpureh2o.com/wordpress/
here is my functions.php code.
<?php
function wpbootstrap_scripts_with_jquery()
{
// Register the script like this for a theme:
wp_register_script( 'custom-script', get_template_directory_uri() . '/bootstrap/js/bootstrap.js', array( 'jquery' ) );
// For either a plugin or a theme, you can then enqueue the script:
wp_enqueue_script( 'custom-script' );
}
function register_my_menus() {
register_nav_menus(
array(
'main-menu' => __( 'Main Menu' ),
'extra-menu' => __( 'Extra Menu' )
)
);
}
add_action( 'init', 'register_my_menus' );
add_action( 'wp_enqueue_scripts', 'wpbootstrap_scripts_with_jquery' );
if ( function_exists('register_sidebar') )
register_sidebar(array(
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
?>
]]>Here is the CSS:
#access {
background-image: url('https://deeprootednutrition.com/wp-content/uploads/2013/04/navpic.png');
box-shadow: 0 4px 8px rgba(0,0,0,0.4);
display: block;
clear: both;
float: left;
width: 100%;
opacity: 80;
text-align: justify;
}
#access a {
color: #ffffff;
font-weight: bold;
text-shadow: green .1em .1em .2em;
text-align: justify;
padding: 5px;
}
What am I not seeing here?
]]>Would be great if plugin picked up all post, certain posts, or if urls could be entered. Would make experience much nice for user. See USA Today for example.
If such a plugin exists, suggestions for finding it would be great.I have searched for quite a while and found nothing.
]]>header.php
<div id="nav">
<?php wp_list_pages('sort_column=menu_order&title_li=');?>
</div>
style.css
#header #nav {
float: left; margin: 0 0 0 24px; background: url(images/navbar.png) repeat-x; padding: 2px 0 0 0; width: 100%;
z-index: 1;
}
Is the default wordpress navigation I have to place
<li>
in order to make it horizontal ? Just one problem, if it is how to delete the bullet behind it ?
You can see it live here:
https://comms.informahealthcare.com.s124910.gridserver.com
You can find the code for for the nav and nav css here:
https://comms.informahealthcare.com.s124910.gridserver.com/nav.html
https://comms.informahealthcare.com.s124910.gridserver.com/style3x.css
Any help would be gratefully received as I can’t see where I am going wrong.
]]>