Advertisement

08.05.2008 at 07:59AM PDT, ID: 23622454
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.2

Spliced images CSS style in IE6 VB.net

Asked by BobCSD in Programming for ASP.NET, Cascading Style Sheets (CSS), Web Images

Tags: ,

I have provided a ZIP file which includes a project that has the images and code for images I am trying to splice together.

http://www.ee-stuff.com/Expert/Upload/getFile.php?fid=7224

It works great in IE7 and in Firefox.

There are 3 images spliced together. Rounded corner left, middle segment that stretches, and rounded corner right. The problem is the right image has a gap before it in IE6. Not in IE7 or Firefox, but in IE6.

I have to support IE6. So it would be great if someone could look at it and tell me what is going on.

If you need a version of IE6 that will work alongside IE7 with no problems, use this link to install it:
http://tredosoft.com/Multiple_IE

I use this product (and donated too!) and it's great. It's been a lifesaver in supporting multiple browsers and testing. A friend tried to download and install IE6 but it was incompatible with his system. But tredosoft does something on install that makes it compatible and easily installed with a click. You can select one or more older versions to install.

Thanks!

/* used for Orange Tabs */
.OrangeTabLeft
{
      background: url( 'images/OrangeTabLeft.png' ) no-repeat;
      width: 5px;
      height:30px;
      float:left;
      display:block;
 
}
 
.OrangeTabMiddle
{
      background: url(  'images/OrangeTabMiddle.png' ) repeat-x;
      padding-top: 2px;      /* indent top so combo box wont' be too high */
            text-align: left;
      height: 28px;            /* set height smaller by 2 px to allow for padding and equal other 2 tabs */
      display:block;
      float:left;
}
.OrangeTabRight
{
      background: url( 'images/OrangeTabRight.png' ) no-repeat;
      width: 9px;
      height:30px;
      display:block;
}

.OrangeLong
{
      width: 200px;
}

.OrangeShort
{
      width: 33px;
}
 
 .Sliver
 {
       width: 1px;
 }
 


Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
    <link href="OrangeTab.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
<div>
 
 
 
<table cellpadding="0" cellspacing="0" border="0">
   <tr>
      <td>
            <div class="OrangeTabLeft"></div>
            <div class="OrangeTabMiddle OrangeShort">
               <asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="images/Search.png" /></div><div class="OrangeTabRight"></div>
                     
      </td>
      <td class="Sliver"></td>
      <td>
            <div class="OrangeTabLeft"></div>
            <div class="OrangeTabMiddle OrangeLong">
               <asp:Label ID="Label1" runat="server" Text="Select"></asp:Label>
               <asp:DropDownList ID="DropDownList1" runat="server">
                  <asp:ListItem>Big Long Thing Here</asp:ListItem>
               </asp:DropDownList>
            </div><div class="OrangeTabRight"></div>
      </td>
   </tr>
</table>
 
       
       </div> 
    </form>
</body>
</html>
[+][-]08.05.2008 at 07:37PM PDT, ID: 22166784

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.06.2008 at 07:59AM PDT, ID: 22170978

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 14-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.06.2008 at 10:10AM PDT, ID: 22172472

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.06.2008 at 10:16AM PDT, ID: 22172535

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 14-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.11.2008 at 08:58AM PDT, ID: 22205523

View this solution now by starting your 14-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Programming for ASP.NET, Cascading Style Sheets (CSS), Web Images
Tags: Css, IE6 browser compliance
Sign Up Now!
Solution Provided By: BobCSD
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20081112-EE-VQP-43 / EE_QW_EXPERT_20070906