Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need to make this tab interface nicer and less crowded 2

Status
Not open for further replies.

Cooperdam

MIS
Oct 7, 2009
65
US
asp:HyperLink ID="HyperLink2" runat="server" ForeColor="Blue" style="text-decoration: underline" NavigateUrl="SpendAnalyzer/Default.aspx">CARETRAK</asp:HyperLink>




The following code displays a tab for the user to click on, and then runs their app. The way it is coded, the three tabs have no space between them nor do they look pretty. any ideas to improve the look here? u can see this here:


asp:HyperLink ID="HyperLink2" runat="server" ForeColor="Blue" style="text-decoration: underline" NavigateUrl="SpendAnalyzer/Default.aspx">CARETRAK</asp:HyperLink>

<asp:HyperLink ID="HyperLink3" runat="server" ForeColor="Blue" style="text-decoration: underline" NavigateUrl="SpendAnalyzer_Oncare/Default.aspx">CARETRAK_OnCare</asp:HyperLink>
 
use CSS to style it. avoid tables for non-tabular data when possible. I have seen other sites use an unordered list of links to get really nice effects.

if all you're after is some spacing use CSS to increase the padding/margin on the left and right side of the links.

Jason Meckley
Programmer
Specialty Bakers, Inc.

faq855-7190
faq732-7259
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top