Link to home
Start Free TrialLog in
Avatar of Starquest321
Starquest321

asked on

Changing Href Links

I have the code below. I need to change the name of the button to For Rent and the result, when clicked, should be as follows:

http://www.domain.com/site_search.php?search_purpose=rent&search_type=&search_price_min=&search_price_max=&search_order=type&search_ordermethod=asc&x=71&y=16
<td><img src="images/nav_divider.gif" width="2" height="37"></td>
							<td width="100" align="center" class="{$nav_class_about}" onclick="location.href='site_about.php'">
								<a href="site_page_about.php" class="normal_12_white_verdana"><strong>About Us</strong></a>
							</td>

Open in new window

Avatar of Beverley Portlock
Beverley Portlock
Flag of United Kingdom of Great Britain and Northern Ireland image

I'm not sure if this is what you have in mind....
<td>
     <img src="images/nav_divider.gif" width="2" height="37">
</td>
<td width="100" align="center" class="{$nav_class_about}">
     <a href="http://www.domain.com/site_search.php?search_purpose=rent&search_type=&search_price_min=&search_price_max=&search_order=type&search_ordermethod=asc&x=71&y=16" class="normal_12_white_verdana"><strong>For rent</strong></a>
</td>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Roger Baklund
Roger Baklund
Flag of Norway image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial