Child Category CSS to span entire row
 PFAFF                
                
                     ✭
PFAFF                
                
                     ✭                
            Right now, my child categories are crammed beneath the parent category. Is there a way so they are listed all the way across the row?
http://www.nerdlouisville.org/wp-content/uploads/2015/08/child-categories.png
            Tagged:
            
        
0          
             
         
            
Comments
@PFAFF
I don't think so, as your sections are in table
<td>tags, so each column wraps at the max td width.If you provided a link to the site... can't tell anything from a picture...
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
Sorry!
nerdlouisville.org/community
you could change css
.Wrap .ChildCategories { width: 700px !important; }if you don't know where to change it:
see this in FAQ
http://vanillaforums.org/discussion/comment/219925/#Comment_219925
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
try this, it will display the child categories in one line
.CategoryTable .ChildCategories { font-size: 12px; display: inline-table; min-width: 725px; width: 100%; }❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
@vrijvlinder, that worked man! Thanks so much, everyone!