-
AuthorPosts
-
October 19, 2022 at 3:15 am #1369308
On my site https://gideonfranchise.flywheelsites.com/ towards the bottom
How do I add small white divider lines between authority section that lists experience?
As you can see the small wide divider is missing between each section
Thanks
October 19, 2022 at 7:20 am #1369341Hi navindesigns,
Thanks for giving us admin access.
I have added a Custom ID Attribute to the gridrow, I just named it mygridrow and added this CSS code in Quick CSS:.home #mygridrow .flex_cell_inner:after { content: ''; width: 2px; height: 50%; background-color: white; position: absolute; right: 0; top: 50%; transform: translateY(-50%); } .home #mygridrow > .avia-builder-el-last .flex_cell_inner:after { display: none; }
I think the only remaining thing is to center those text which can be done via Special Heading’s options.
Best regards,
Nikko- This reply was modified 2 years ago by Nikko.
November 15, 2022 at 4:18 am #1372592This works and looks great on desktop
However on mobile, how can I:
1- remove the small white divider lines on the far right
2- reduce the space between each one since they are now stacked and there are extra spaces betweenmockup- https://ibb.co/sb8t7wm
November 15, 2022 at 6:02 am #1372594Hi navindesigns,
Please add this CSS code:
@media only screen and (max-width:767px) { #mygridrow { background-color: #274454; padding-top: 50px; padding-bottom: 50px; } #mygridrow .flex_cell { padding: 10px; } #mygridrow .flex_cell_inner:after { display: none; } }
Hope it helps.
Best regards,
NikkoNovember 17, 2022 at 2:42 am #1372870November 18, 2022 at 12:04 am #1373028Hi navindesigns,
I checked your site and it seems to show the code’s effect properly on my end, probably, clearing the browser cache may help.
Also, with this request “Can I just move the divider horizontally between the items on mobile like this mockup”, please remove the last code I gave on this thread and replace it with:@media only screen and (max-width:767px) { #mygridrow { background-color: #274454; padding-top: 50px; padding-bottom: 50px; } #mygridrow .flex_cell { padding: 30px 0; } #mygridrow .flex_cell_inner:after { display: block !important; width: 100px; height: 2px; top: auto; bottom: -20px; right: 50%; transform: translate(50%, 0); } #mygridrow > .flex_cell:last-child .flex_cell_inner:after { display: none; } }
Best regards,
Nikko -
AuthorPosts
- You must be logged in to reply to this topic.