Link to home
Start Free TrialLog in
Avatar of emi_sastra
emi_sastra

asked on

Set Laravel page grid row height using blade.

Hi All,

I use coreUI template and laravel.
Is there any way to change the grid row height. Just  set once using blade. and it could be used for all page?

Thank you.
ASKER CERTIFIED SOLUTION
Avatar of Zakaria Acharki
Zakaria Acharki
Flag of Morocco image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Another Idea if you want to change the height of rows by blade, you could attach the class to the parent element in the blade and define the CSS class rule like :

.fixed-row-height .row{
    height: 200px;
} 

Open in new window


Working live fiddle that fixes the row height from parent
Avatar of emi_sastra
emi_sastra

ASKER

Great Zakaria.

Thank you very much for your help.
You're welcome, Glad I could help.