Click here to Skip to main content
15,892,059 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: .cmd file execution in asp.net Pin
Richard Deeming5-Dec-13 2:05
mveRichard Deeming5-Dec-13 2:05 
GeneralRe: .cmd file execution in asp.net Pin
Vishalsb5-Dec-13 2:25
Vishalsb5-Dec-13 2:25 
GeneralRe: .cmd file execution in asp.net Pin
Richard Deeming5-Dec-13 2:32
mveRichard Deeming5-Dec-13 2:32 
GeneralRe: .cmd file execution in asp.net Pin
Vishalsb5-Dec-13 2:37
Vishalsb5-Dec-13 2:37 
GeneralRe: .cmd file execution in asp.net Pin
Richard Deeming5-Dec-13 2:43
mveRichard Deeming5-Dec-13 2:43 
AnswerRe: .cmd file execution in asp.net Pin
ZurdoDev6-Dec-13 10:25
professionalZurdoDev6-Dec-13 10:25 
QuestionRe: .cmd file execution in asp.net Pin
Amir Hamza Md. Kayes7-Dec-13 8:51
professionalAmir Hamza Md. Kayes7-Dec-13 8:51 
QuestionCCS for Image diaplay Pin
Member 104545924-Dec-13 7:56
Member 104545924-Dec-13 7:56 
I created a page that displays image gallery. However, the images display only about 80% of the source images. How can the loaded images be adjusted in the ccs?
The related code & ccs are below. Thanks if you can help.

<div id="thumbs" class="navigation">
<ul class="thumbs noscript">
<li>
<a class="thumb" name="3" href="Images/MapGallery/Large/image1_Large.jpg" title="My Map">
  <img src="Images/MapGallery/image1.jpg" alt="Title #3" width="80" height="80"/>
</a>
  <div class="caption">
     <div class="download">
	<a href="Images/MapGallery/Large/image1_Large.jpg">Download Original</a>
     </div>
     <div class="image-title">My Map</div>
     <div class="image-desc">Description</div>
  </div>
</li>
...


CSS
div.content {
	/* The display of content is enabled using jQuery so that the slideshow content won't display unless javascript is enabled. */
	display: none;
	float: right;
	width: 700px;
}
div.content a, div.navigation a {
	text-decoration: none;
	color: #777;
}
div.content a:focus, div.content a:hover, div.content a:active {
	text-decoration: underline;
}
div.controls {
	margin-top: 5px;
	height: 23px;
}
div.controls a {
	padding: 5px;
}
div.ss-controls {
	float: left;
}
div.nav-controls {
	float: right;
}
div.slideshow-container {
	position: relative;
	clear: both;
	height: 500px;    /* This should be set to be at least the height of the largest image in the slideshow */
}
div.loader {
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('loader.gif');
	background-repeat: no-repeat;
	background-position: center;
	width: 800px;
	height: 800px; /* This should be set to be at least the height of the largest image in the slideshow */
}
div.slideshow {

}
div.slideshow span.image-wrapper {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
div.slideshow a.advance-link {
	display: block;
	width: 550px;
	height: 502px; /* This should be set to be at least the height of the largest image in the slideshow */
	line-height: 502px; /* This should be set to be at least the height of the largest image in the slideshow */
	text-align: center;
}
div.slideshow a.advance-link:hover, div.slideshow a.advance-link:active, div.slideshow a.advance-link:visited {
	text-decoration: none;
}
div.slideshow img {
	vertical-align: middle;
	border: 1px solid #ccc;
}
div.download {
	float: right;
}
div.caption-container {
	position: relative;
	clear: left;
	height: 75px;
}
span.image-caption {
	display: block;
	position: absolute;
	width: 550px;
	top: 0;
	left: 0;
}
div.caption {
	padding: 12px;
}
div.image-title {
	font-weight: bold;
	font-size: 1.4em;
}
div.image-desc {
	line-height: 1.3em;
	padding-top: 12px;
}
div.navigation {
	/* The navigation style is set using jQuery so that the javascript specific styles won't be applied unless javascript is enabled. */
}
ul.thumbs {
	clear: both;
	margin: 0;
	padding: 0;
}
ul.thumbs li {
	float: left;
	padding: 0;
	margin: 5px 10px 5px 0;
	list-style: none;
}
a.thumb {
	padding: 2px;
	display: block;
	border: 1px solid #ccc;
}
ul.thumbs li.selected a.thumb {
	background: #000;
}
a.thumb:focus {
	outline: none;
}
ul.thumbs img {
	border: none;
	display: block;
}
div.pagination {
	clear: both;
}
div.navigation div.top {
	margin-bottom: 12px;
	height: 11px;
}
div.navigation div.bottom {
	margin-top: 12px;
}
div.pagination a, div.pagination span.current, div.pagination span.ellipsis {
	display: block;
	float: left;
	margin-right: 2px;
	padding: 4px 7px 2px 7px;
	border: 1px solid #ccc;
}
div.pagination a:hover {
	background-color: #eee;
	text-decoration: none;
}
div.pagination span.current {
	font-weight: bold;
	background-color: #000;
	border-color: #000;
	color: #fff;
}
div.pagination span.ellipsis {
	border: none;
	padding: 5px 0 3px 2px;
}

QuestionRe: CCS for Image diaplay Pin
Blikkies4-Dec-13 20:40
professionalBlikkies4-Dec-13 20:40 
AnswerRe: CCS for Image diaplay Pin
Member 104545925-Dec-13 1:59
Member 104545925-Dec-13 1:59 
QuestionBeginProcessRequestNotification Taking Too Much Time Pin
Kishore Ramakrishnan4-Dec-13 0:49
Kishore Ramakrishnan4-Dec-13 0:49 
SuggestionRe: BeginProcessRequestNotification Taking Too Much Time Pin
ZurdoDev6-Dec-13 10:26
professionalZurdoDev6-Dec-13 10:26 
QuestionHow to catch maxrequestlength errors Pin
Wombaticus3-Dec-13 1:17
Wombaticus3-Dec-13 1:17 
AnswerRe: How to catch maxrequestlength errors Pin
Blikkies3-Dec-13 1:34
professionalBlikkies3-Dec-13 1:34 
GeneralRe: How to catch maxrequestlength errors Pin
Wombaticus3-Dec-13 1:53
Wombaticus3-Dec-13 1:53 
Questionradtabstrip validation focus Pin
deepak 123-Dec-13 1:04
deepak 123-Dec-13 1:04 
QuestionAuto upload file Pin
pathakph1-Dec-13 18:38
pathakph1-Dec-13 18:38 
AnswerRe: Auto upload file Pin
Richard MacCutchan1-Dec-13 21:06
mveRichard MacCutchan1-Dec-13 21:06 
AnswerRe: Auto upload file Pin
Abhinav S2-Dec-13 3:19
Abhinav S2-Dec-13 3:19 
QuestionHTML5 Audio Tag Pin
#realJSOP1-Dec-13 5:31
mve#realJSOP1-Dec-13 5:31 
AnswerRe: HTML5 Audio Tag Pin
DRAYKKO7771-Dec-13 17:04
DRAYKKO7771-Dec-13 17:04 
AnswerRe: HTML5 Audio Tag Pin
Jörgen Andersson4-Dec-13 10:33
professionalJörgen Andersson4-Dec-13 10:33 
GeneralRe: HTML5 Audio Tag Pin
#realJSOP5-Dec-13 0:02
mve#realJSOP5-Dec-13 0:02 
GeneralRe: HTML5 Audio Tag Pin
Jörgen Andersson5-Dec-13 3:03
professionalJörgen Andersson5-Dec-13 3:03 
QuestionWhat is the basic difference between ASP and ASP.NET? Pin
IFTIKHAR AHMADQ1-Dec-13 5:06
IFTIKHAR AHMADQ1-Dec-13 5:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.