Your Time:
Our Time:
← Back to discussions

Tabs responsive problem in movile devices.

Need help with a different issue? Search the forums or open a new ticket.
Open a support ticket

This topic has 4 replies, 2 voices, and was last updated 6 years, 11 months ago by RAMIROROSAS.

Tagged: 

  • 2019-10-11 at 2:56 am
    Unknown Support Status
    #26096
    RAMIROROSAS
    Participant
    • Topics: 2
    • Replies: 4
    • Total posts: 6
    • Post count: 4

    I have a problem with the Tabs. In mobile phones they look very large and they overflow from the sides. If you move the screen you can see a color bar on the side.
    Is there any way they get smaller in smalls screens?

    I attach a picture of the problem.
    http://corma.mx/wp-content/uploads/2019/10/Screenshot_20191010-161402_Chrome.jpg

    2019-10-11 at 5:16 pm
    #26125
    Fem
    Keymaster
    • Topics: 2
    • Replies: 5215
    • Total posts: 5217
    • Post count: 6003

    Hi, RAMIROROSAS
    Add this CSS in your custom CSS

    @media only screen and (min-width: 320px) and (max-width: 480px) {
    	.systabspane.hortabs ul.tabs {
    		display: -webkit-box;
    		display: -ms-flexbox;
    		display: flex;
    		-webkit-box-orient: vertical;
    		-webkit-box-direction: normal;
    		-ms-flex-direction: column;
    		flex-direction: column;
    	}
    }
    
    @media only screen and (max-width : 320px) {
    	.systabspane.hortabs ul.tabs {
    		display: -webkit-box;
    		display: -ms-flexbox;
    		display: flex;
    		-webkit-box-orient: vertical;
    		-webkit-box-direction: normal;
    		-ms-flex-direction: column;
    		flex-direction: column;
    	}
    }

    If still you have any further queries feel free to contact us.

    2019-10-11 at 11:19 pm
    Unknown Support Status
    #26126
    RAMIROROSAS
    Participant
    • Topics: 2
    • Replies: 4
    • Total posts: 6
    • Post count: 4
    This reply has been marked as private.
    2019-10-15 at 1:56 pm
    #26127
    Fem
    Keymaster
    • Topics: 2
    • Replies: 5215
    • Total posts: 5217
    • Post count: 6003

    Hi, RAMIROROSAS
    I have seen it is working fine tab buttons are placed vertically in small screens.

    2019-10-15 at 8:18 pm
    Unknown Support Status
    #26139
    RAMIROROSAS
    Participant
    • Topics: 2
    • Replies: 4
    • Total posts: 6
    • Post count: 4

    Hi… u r right! Thank u so much!

The topic ‘Tabs responsive problem in movile devices.’ is closed to new replies.