Re: Variable div width
I get what your saying but I would lose my CSS #ProgressContainer { position:absolute; width:530px; height:30px; z-index:12; left: 133px; top: 622px; } #ProgressBar { float: left; height: 10px;...
View ArticleRe: Variable div width
hope this helpsMake the div runat="server" and assign an id.<div style="width: 500px; border: solid 1px #BCBCBC; height: 20px"><div id="progressBar" runat="server" style="background-color:...
View ArticleRe: Variable div width
I would prefer to keep what I have as the value is set in a session plus I would have to pass them to the jQuery resulting in the same question .The value changed page by page based on the session. I...
View ArticleRe: Variable div width
try out this<div style="width:500px;border:solid 1px #BCBCBC;height:20px "><div style="width:90%;background-color:#0099CC;height:20px; "></div></div>here you need to set the...
View ArticleRe: Variable div width
I'm afraid you have lost me sujithkumar - I really want to make the Progress bar length vary (it has some CSS that makes it fill in with dots)Aspx page<div id="ProgressBar" style="width: 0px"...
View ArticleRe: Variable div width
Hi,you can try like this..<div id="ProgressBar" style="width: 100px" runat="server"> </div>ProgressBar.Style.Add("width", "Your value here");Hope this will help you
View ArticleVariable div width
I have a div...<div id="ProgressBar" style="width: 100px">and want to make the width a variable based on a formula I have in a session i.e Session.item("length") how can I do that? Thanks!...
View ArticleRe: Variable div width
Hi,You may not lose your CSS but the image size may be too big to cover the div background color. So you could set the div width size larger than the image full size, and you could see the uncovered...
View Article