Okay
  Public Ticket #2312901
Nectar Horizontal List - mobile view
Closed

Comments

  • pat_bsk started the conversation

    Hi,

    I'm trying to align text in "Przydatne informacje" horizontal list, so it will look on mobile just like on desktop version:

    first column text align: left

    second column text align: right


  •  8,992
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (max-width: 999px) and (min-width: 1px) {
        .nectar-hor-list-item >.nectar-list-item[data-text-align="right"] {
            text-align: right !important;
        }
        .nectar-hor-list-item {
            padding: 22px 12px !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  • pat_bsk replied

    Thank you very much!!!!