Okay
  Public Ticket #3440505
Screen Width - mobile
Closed

Comments

  •  3
    Kevin started the conversation

    Hey, can u tell me how to fix screen width from 88% to 100%? Some sections are 100% width and some of them are not. Pictures below show those problems. 


    Kevin

    Attached files:  Screenshot 2023-08-20 at 16.55.05.png

  •  8,860
    Tahir replied

    Hey Again,

    You will have to remove the padding from mobile: https://themenectar.com/docs/salient/page-builder-row/#padding

    4566822574.png

    Thanks.


    ThemeNectar Support Team 

  •  3
    Kevin replied

    Yeah i know that but the problem is that i dont see any padding added in those section... Are maybe padding added within theme code? I do not work with child theme...

  •  3
    Kevin replied

    ps: i need to remove padding from whole section, not jutr from that text... and im over-chacking settings but still dont see padding added...


  •  8,860
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    @media only screen and (min-width: 1px) and (max-width: 999px) {
        #ajax-content-wrap .vc_row.inner_row.right_padding_10pct .row_col_wrap_12_inner, .nectar-global-section .vc_row.inner_row.right_padding_10pct .row_col_wrap_12_inner {
            padding-right: 0px !important;
        }
    }

    Thanks


    ThemeNectar Support Team