Nevermind, I figured it out! Woo hoo!
This is what I used in case anyone wants the goods…
<?php
$cat_name = single_cat_title( '', false );
if ($cat_name == "workshops") {
echo "Workshop Category Code!";
}
elseif ($cat_name == "seminars") {
echo "Seminar Category Code!";
}
?>