Click here to Skip to main content
15,924,507 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I have 4 Link-buttons in one line above the footer, In my developing machine when i run it through VS Debugger it is fine. But after deployment on iis when i access it through a URL the 3Link-buttons are displaying in one line and the 4th link-button in next line.
How to fix this problem?
Posted
Comments
Sergey Alexandrovich Kryukov 19-May-11 1:48am    
Not clear. How it looks and how implemented? Same Web browser of note?
--SA

Sounds like design issue. Make sure that the HTML is properly designed. You can always use tools like IEDeveloper to check the content in the browser.

Further, make sure that you have provided proper space to them to be displayed. Using percentage will depend on the screen size and the browser window size. Using fixed will avoid it but can give scroll pain. So, follow proper standards, design it such that you don't face issues.
 
Share this answer
 
use 4 <td> and place all the link buttons in each td
<tr>
<td>button1</td>
<td>button2</td>
<td>button3</td>
<td>button4</td>
</tr>
 
Share this answer
 
check the width, It should not go beyond the width of the parent container for link button
 
Share this answer
 
use proper html standerds see
Click here
i too had the same problem
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900