I am not a .NET person so I have very little knowledge about .NET. I work as ERP Implementation Consultant. I work with C# .NET only when need be.
I am facing a strange issue with CSS on C#.
The CSS works fine on IE when I run my project via the development environment i.e. Visual Studio Express 2013 for Web.
But when I publish the project the CSS works only on Firefox but not on IE. I have tried to give as much details as possible. If you need any further details please let me know.
I am trying to present the production data in 24 hour clock format. Hence the project. All I have done is, built a table and placed text boxes in table cells. The data gets filled in from a SQL table. Everything works apart from visual issues.
A) TEST run via VS 2013 Web (IE 10) & Website Published on IIS8 and viewed through Firefox (34.0.5)
https://my.pcloud.com/publink/show?code=XZW1v7ZuoPYebh9GWSbaaXG8auQF0oiBsAX
B) The same website viewed through IE 10
https://my.pcloud.com/publink/show?code=XZQ1v7ZY3mayDOwwSmthL8fySHs18qGiguX
D) The actual CSS
<style type="text/css">
.ActTxtBoxInTable
{
text-align:right;
border:none;
background-color:white;
width:60px;
font-size:x-large;
font-weight:800;
color:black;
}
.ActTxtBoxInTableLR
{
text-align:right;
border:none;
background-color:white;
width:60px;
font-size:x-large;
font-weight:800;
color:black;
}
.HrsTxtBoxInTable
{
text-align:center;
border:none;
background-color:navy;
width:60px;
font-size:x-large;
font-weight:800;
color:yellow;
border-radius:6px;
}
.HrsTxtBoxInTableLR
{
text-align:center;
border:none;
background-color:navy;
width:60px;
font-size:x-large;
font-weight:800;
color:yellow;
border-radius:6px;
}
</style>
Thanks in advance. Any help is greatly appreciated.
Uday