From bfdb9574fe641b6b8853f2a49c352bfcab1d2d32 Mon Sep 17 00:00:00 2001
From: lowercase-donkey <lowercasedonkey@gmail.com>
Date: Thu, 21 Feb 2019 13:46:01 -0500
Subject: [PATCH] Use table to correct image indent issue for coursing

---
 src/uncategorized/seCoursing.tw | 19 ++++++++++++++-----
 1 file changed, 14 insertions(+), 5 deletions(-)

diff --git a/src/uncategorized/seCoursing.tw b/src/uncategorized/seCoursing.tw
index 3eacfb72ecc..776d8f8b935 100644
--- a/src/uncategorized/seCoursing.tw
+++ b/src/uncategorized/seCoursing.tw
@@ -85,8 +85,18 @@ You lead your lurcher $Lurcher.slaveName out on a leash, naked just like the har
 	<<set _possibleOrigins.push("disobedient young dickgirl")>>
 <</if>>
 
-<<for _sec = 0; _sec < 3; _sec++>>
+<style>  /* a table is used here because very short hare descriptions cause images to indent oddly if they are shown.  This ensures they are always directly below each other. */
+	table.coursing {
+		border-style: hidden;
+		empty-cells: hide;
+		border-collapse: separate;
+		border-spacing: 0px 15px;
+	}
+</style>
 
+<table class="coursing" border="1">
+<<for _sec = 0; _sec < 3; _sec++>>
+<tr>
 <<set $hareSpeed = 10>>
 <<set $origin = _possibleOrigins.pluck()>> /* select random origin and remove from list to avoid using same origin multiple times */
 <<if $origin == "virgin">>
@@ -216,10 +226,8 @@ You lead your lurcher $Lurcher.slaveName out on a leash, naked just like the har
 	<<set $activeSlave.weight = random(-100,200)>>
 <</if>>
 <<setLocalPronouns $activeSlave 2>>
-<br><br>
 /* 000-250-006 */
 <<if $seeImages && $seeReportImages>>
-<br>
 <div class="imageRef tinyImg">
 	<<SlaveArt $activeSlave 0 0>>
 </div>
@@ -300,7 +308,7 @@ You lead your lurcher $Lurcher.slaveName out on a leash, naked just like the har
 <<elseif $origin == "disobedient young">>
 	is a fit young $activeSlave.race _girl2, and is far more watchful and alert than _his2 fellow hares. _He2 may be a @@.pink;disobedient slave@@ here because _he2 was difficult to train.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around _his2 neck.<</if>>
 <<elseif $origin == "disobedient young dickgirl">>
-	is a strong young $activeSlave.race slave with who retains _his2 cock and balls, and looks determined. Perhaps _he2's a @@.pink;resistant dickgirl@@ who's been difficult to turn into a good girl.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around _his2 cock.<</if>>
+	is a strong young $activeSlave.race slave who retains _his2 cock and balls, and looks determined. Perhaps _he2's a @@.pink;resistant dickgirl@@ who's been difficult to turn into a good girl.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around _his2 cock.<</if>>
 <<elseif $origin == "huge balled">>
 	is <<if $activeSlave.race == "amerindian" || $activeSlave.race == "asian" || $activeSlave.race == "indo-aryan">>an<<else>>a<</if>> $activeSlave.race slave whose distinguishing characteristic is a dangling scrotum and a pair of @@.pink;huge balls.@@ This impediment bumps against _his2 thighs as _he2's made ready.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around _his2 hefty testicles.<</if>>
 <<elseif $origin == "feminized">>
@@ -389,8 +397,9 @@ You lead your lurcher $Lurcher.slaveName out on a leash, naked just like the har
 	<<set $origin3 = $origin>>
 	<<set $hareSpeed3 = $hareSpeed>>
 <</if>>
+</tr>
 
 <</for>>
-
+</table>
 <br><br>
 </span>
\ No newline at end of file
-- 
GitLab