Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #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?

    Mockup:
    Screen-Shot-2022-10-18-at-9-12-59-PM

    My dev site mockup
    Screen-Shot-2022-10-18-at-9-13-36-PM

    As you can see the small wide divider is missing between each section

    Thanks

    #1369341

    Hi 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.
    #1372592

    This 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 between

    mockup- https://ibb.co/sb8t7wm

    #1372594

    Hi 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,
    Nikko

    #1372870

    hi

    Nothing changed on my end

    Can I just move the divider horizontally between the items on mobile like this mockup
    Screen-Shot-2022-11-16-at-7-40-40-PM

    If we can do this one request instead, that will be great

    Thanks in advance

    #1373028

    Hi 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

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.