diff --git a/application/views/scripts/playlist/set-cue.phtml b/application/views/scripts/playlist/set-cue.phtml
index 64a7fb32e..3503e4f83 100644
--- a/application/views/scripts/playlist/set-cue.phtml
+++ b/application/views/scripts/playlist/set-cue.phtml
@@ -3,12 +3,12 @@
cueIn; ?>
-
+
Cue Out:
cueOut; ?>
-
+
Original Length:
origLength; ?>
diff --git a/application/views/scripts/playlist/set-fade.phtml b/application/views/scripts/playlist/set-fade.phtml
index 5c7c2c308..a23b8111a 100644
--- a/application/views/scripts/playlist/set-fade.phtml
+++ b/application/views/scripts/playlist/set-fade.phtml
@@ -3,10 +3,10 @@
fadeOut; ?>
-
+
Fade in:
fadeIn; ?>
-
+
diff --git a/public/css/playlist_builder.css b/public/css/playlist_builder.css
index 870b3c7c5..9a6edccf5 100644
--- a/public/css/playlist_builder.css
+++ b/public/css/playlist_builder.css
@@ -239,12 +239,13 @@
margin: 0;
}
-.edit-error {
+dd.edit-error {
color:#b80000;
margin:0;
padding-bottom:0;
font-size:12px;
display:none;
+ clear: left;
}
/*.edit-error:last-child {
diff --git a/public/js/airtime/library/spl.js b/public/js/airtime/library/spl.js
index 00f58ccce..7bb24f0e3 100644
--- a/public/js/airtime/library/spl.js
+++ b/public/js/airtime/library/spl.js
@@ -24,9 +24,11 @@ function changeClipLength(pos, json) {
}
function showError(el, error) {
- $(el).parent().next().find("span")
- .empty()
- .append(error)
+ $(el).parent().next()
+ .find("span")
+ .empty()
+ .append(error)
+ .end()
.show();
}