Span Class Wrong Size
-
I am having issues with the bootstrap shortcut class span. When looking at the row-fluid div in the inspector it shows 100% of the row. However, the spans are filling in a smaller area than they should. Meaning, a span1 is 1/12 of the row, which is 8.333% width. I am seeing 5.982% width. This ends up shoving all of the spans over to the left of the row-fluid div. This then leaves a large blank space to the right of the 12th span.
This is the block I am talking about.
<div class="row-fluid"> <div class="span1 cs_label"><span title="Prebuilt characters players can use to play the Fyxt RPG.">PC</span></div> <div class="span1 cs_stat"><?php echo $pcCount ?></div> <div class="span1 cs_label"><span title="Prebuilt enemies Game Masters can use in their Fyxt RPG games.">Minion</span></div> <div class="span1 cs_stat"><?php echo $minionCount ?></div> <div class="span1 cs_label"><span title="Prebuilt enemies Game Masters can use in their Fyxt RPG games.">Grunt</span></div> <div class="span1 cs_stat"><?php echo $gruntCount ?></div> <div class="span1 cs_label"><span title="Prebuilt enemies Game Masters can use in their Fyxt RPG games.">Specialist</span></div> <div class="span1 cs_stat"><?php echo $specialistCount ?></div> <div class="span1 cs_label"><span title="Prebuilt enemies Game Masters can use in their Fyxt RPG games.">Champion</span></div> <div class="span1 cs_stat"><?php echo $championCount ?></div> <div class="span1 cs_label"><span title="Prebuilt enemies Game Masters can use in their Fyxt RPG games.">Boss</span></div> <div class="span1 cs_stat"><?php echo $bossCount ?></div> </div>
How can I fix this? I am not sure why but all spans are too small and being smashed to the left. Is there a style overwrite I could do or something?
I would like to have as much control as Bootstrap has but loading Bootstrap seems to break this themes widget areas. I am using Customizr classic version.
- The topic ‘Span Class Wrong Size’ is closed to new replies.