http://ocklaw.com/new/


Can anyone help me fix the navigation.

1)I would like a horizontal navigation botton NOT vertical like in the link. How to create a horizontal navigation button.

2)I would like to erase the numbers.

If anyone could help me answer one of the question you are welcome to answer my post. Thanks.

sidebanner.css

#containerSide {
 width: 200px;
 height: 200px;
 position:relative;
 margin: 0 0 0 0; 
} 

#nav {
 background: url(images/buttonnav.png);
 background-repeat:no-repeat;
 background-position: 0 -25px; 
 position: absolute;
 bottom: -150px;
 left: 680px;
 display: inline-block;
 width: 20px; 
 z-index: 2;
} 

#nav a:link {
 background: url(images/buttonnav.png);
 background-repeat:no-repeat;
 background-position: 0 -25px; 
 bottom: 20px;
 left: 20px; 
 display: inline-block;
 width: 20px; 
 z-index: 2;
} 

/* mouse over */
#nav a:hover { background: url(images/buttonnav.png);
      background-repeat:no-repeat;
      background-position: 0 -5px;
      bottom: 20px;
      left: 20px;       
      display: inline-block;
      width: 20px; 
      z-index: 2;
     }
     
#nav li{ float:left; padding-right:10px;}
 
/* selected link */
#nav .activeSlide a{ background: url(images/buttonnav.png);
      background-repeat:no-repeat;
      background-position: 0 -5px; 
      bottom: 20px;
      left: 20px;       
      position: absolute;
      display: inline-block;
      width: 20px;
      float: left;
      z-index: 2; 
     } 

#slideshow{
 background: white;
 z-index: 1;
 width: 200px;
}

front-page.php

<div id="body">
<div id="bannerContainer">
<div id="banner"></div> 
        <div id="containerSide">
        <div id="slideshow">
          <img src="<?php echo get_stylesheet_directory_uri(); ?>/images/banner1.png">
          <img src="<?php echo get_stylesheet_directory_uri(); ?>/images/banner2.png">
          <img src="<?php echo get_stylesheet_directory_uri(); ?>/images/banner3.png">              
        </div>
        </div>        
</div>
Member Avatar for stbuchok

If I were you, I'd move this to the Web Development > Web Design > HTML and CSS section as this would be a more appropriate place to ask.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.