• My organization paid an individual to set up our website in WP about 2 years ago. I can no longer get support from him. So I am learning how to tweak the site as I go.

    The problem I’m currently struggling with is this:
    My website features a navigation menu in the left column that consists of seven clickable button choices. One of the buttons, “Resources”, is designed to display three pop-out to the side submenus. Unfortunately, the positioning of the submenus changes depending upon the browser window size in which the site is viewed. Other than the fact that this looks quite unprofessional, it is somewhat confusing to the user.

    I would greatly appreciate any help I might get in trying to fix this problem. Please remember that I am not an advanced user and any guidance should be given with that in mind.

    Thank you in advance for any help you might provide me.
    John

Viewing 1 replies (of 1 total)
  • Thread Starter jbaugh

    (@jbaugh)

    Here’s the part of the code that I believe controls the behavior of the navigation buttons:

    <div id="page">
    			<div id="left">
    				<div id="button">
    					<ul>
    						<li class="first"><a href="http://lccut.org/">Home</a></li>
    
    						<li><a href="http://lccut.org/about-us-2/">About Us</a></li>
    
    						<li><a href="#" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, 'nav1')">Resources</a></li>
    <div id="nav1" class="dropdown"><a href="http://lccut.org/sermons/">Audio</a><a href="http://lccut.org/video-resources/">Video</a><a href="http://lccut.org/encouragement-from-the-word/">Text</a></div>
    						<li><a href="http://lccut.org/current-studies/">Current Studies</a></li>
    						<li><a href="http://lccut.org/location/">Location</a></li>
    						<li><a href="http://lccut.org/contact-us/">Contact Us</a></li>
    						<li><a href="http://lccut.org/links/">Links</a></li>
    					</ul>
    				</div>

    John

Viewing 1 replies (of 1 total)
  • The topic ‘Can't align pop-out submenu if browser window changed’ is closed to new replies.