Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1352553

    Dear team,

    I can´t find a way to:

    1. show title and breadcrumbs on tablets
    2. fix the height of breadcrumbs on mobiles

    Can you please help with that?
    Here some examples:

    Thank you
    Asterios

    P.S. In case you need access, please find login credentials in private.

    #1352561

    Hey Asterios,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media only screen and (max-width: 767px) { 
    	#main > .title_container {
    		position: fixed;
    		width: 95%;
    		z-index: 5;	
    		margin-top: 72px;
    	}
    	#main > .title_container + .container_wrap_first {
    		top: 144px;
    	}
    }
    
    @media only screen and (min-width: 768px) and (max-width: 989px) { 
    	#main > .title_container {
    		position: fixed;
    		width: 95%;
    		z-index: 5;	
    		margin-top: 92px;
    	}
    	#main > .title_container + .container_wrap_first {
    		top: 150px;
    	}
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1352563

    Dear Mike,

    thank you for the fast reply.
    The code provided works, I only had to do some adjustments.

    Please mark the topic as solved.

    Best
    Asterios

    #1352569

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Breadcrums on tablets and mobiles’ is closed to new replies.