Hey there,
i simply want to align all the content inside my 2 grid row cells. left cell to the right, right cell to the left.
can’t be that difficult but i am stuck…
Thanks for help,
Tobi
Hey td8000,
Can you post a link to the page having that issue? you can post in the “private content” section when you reply so only moderators can see. :)
Best regards,
Nikko
See link below.
The first two text boxes (and all other content) in the left grid row cell (upper region of page) should be aligned right and be directly attached to the picture. Similar to the composition below.
Thanks.
Hi,
Try to add this code in Quick CSS (located in Enfold > General Styling):
.page-id-236 #av-layout-grid-1 {
width: 72%;
margin: 0 auto;
}
.page-id-236 #av-layout-grid-1 .av_three_fifth {
width: 100%;
}
Hope this helps :)
Best regards,
Nikko
Hi Nikko,
works fine.
One more question: I’d like to have 2 text boxes within a grid row, one left cell, one right cell, with different width.
With your code, they both allways are at 72%. How ca i adjust only the left one to e.g. 40%?
Thanks
Hi,
Try adding this code in Quick CSS:
.page-id-207 #av-layout-grid-1 .flex_cell.av_one_half {
width: 40%;
}
.page-id-207 #av-layout-grid-1 .flex_cell.av_one_half.avia-builder-el-last {
width: 60%;
}
The left one is 40% and 60% for the right one. Just change the values as you see fit :)
Best regards,
Nikko