Announcement

Collapse
No announcement yet.

Newbie Question - searchbar location

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Newbie Question - searchbar location

    I have a horizontal navigation bar. When I try and insert the search bar next to the nav bar it starts a new line (block).

    How can I get the search bar to be inline with other elements instead of starting a neqw block?

    Thanks,

    jpn

    #2
    could you show us the code or an URL please

    Comment


      #3
      The page was designed in DW

      Code:
      <tr>
      <td colspan = "2" class = "menu"><a class = "menu" href = "index.html">&nbsp;Home&nbsp;</a><img src="images/menuseparator.png" class = "menuseparator"> 
      		  	<a class = "menu" href = "index.html">On-Line Store&nbsp;</a><img src="images/menuseparator.png" class = "menuseparator"> 
      		  	<a class = "menu" href = "index.html">Studio Recording&nbsp;</a><img src="images/menuseparator.png" class = "menuseparator"> 
      		 	 <a class = "menu" href = "index.html">Contact Us&nbsp;</a><img src="images/menuseparator.png" class = "menuseparator"><Actinic:Variable Name="QuickSearchBar"/>
       </td>
      </tr>
      The search bar is at the end of the navbar.

      Thanks,

      jpn

      Comment


        #4
        The quickest way to fix this is to put your menu in seperate table which has two columns, with the actinic quicksearchbar in the second column. Change your code to:

        <tr>
        <td colspan = "2" class = "menu">
        <table border="0" cellspacing="0" cellpadding="0">
        <tr>
        <td>
        <span class="menu"><a class = "menu" href = "index.html">Home&nbsp;</a><img src="images/menuseparator.png" class = "menuseparator" /> <a class = "menu" href = "index.html">On-Line Store&nbsp;</a><img src="images/menuseparator.png" class = "menuseparator" /> <a class = "menu" href = "index.html">Studio Recording&nbsp;</a><img src="images/menuseparator.png" class = "menuseparator" /> <a class = "menu" href = "index.html">Contact Us&nbsp;</a><img src="images/menuseparator.png" class = "menuseparator" /></span>
        </td>
        <td><Actinic:Variable Name="QuickSearchBar"/></td>
        </tr>
        </table>
        </td>
        </tr>

        Comment

        Working...
        X