Setting the height, Justifying space between items
-
Hi,
I’m trying to use this plugin in WordPress 4.4 on Divi 2.5.5 theme.
But I would like to be able to control height of this module and then, depending on the height, justify space between items.
To do that I must contain items in a div and set styleposition:relative; height:(whatever_height_I_want)px; display:flex; flex-direction:column; justify-content:space-between;
to it.
I just don’t know in which php file and in what line to insert that div.MAYBE this image will help you understand.
/****** Order Of DIVS in FileAway Silk ******/ <div id="ssfa-meta-container-some_number"> <div id="ssfa-list-wrap-some_number"> <div clearfix> <h3 class="ssfa-heading"> <h3> </div> <a id='ssfa-$uid-$count'> <div class="ssfa-listitem"> <span class="ssfa-topline"> <span class="ssfa-listicon"> </span> <span class="ssfa-filename"> </span> <div class="ssfa-datemodified"> </div> </div> </a> . . . </div> </div> /****** The Way I Would Like To Order DIVS ******/ <div id="ssfa-meta-container-some_number"> <div id="ssfa-list-wrap-some_number"> <div class="ssfa-clearfix"> <h3 class="ssfa-heading"> <h3> </div> <div class="ssfa-list-container"> /** Where I could set style="position:relative; height:(whatever_height_I_want)px; display:flex; flex-direction:column; justify-content:space-between; **/ <a id='ssfa-$uid-$count'> <div class="ssfa-listitem"> <span class="ssfa-topline"> <span class="ssfa-listicon"> </span> <span class="ssfa-filename"> </span> <div class="ssfa-datemodified"> </div> </div> </a> . . . </div> </div> </div>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Setting the height, Justifying space between items’ is closed to new replies.