Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #244053
    chantal-admin
    Participant

    Bonjour,

    J’aimerais activer mon logo et mon titre uniquement sur les petits écrans 1024 et moins.

    voici mon site : Logo et titre sur petits écrans

    Merci beaucoup et bonne journée !

    #244129
    tikaram
    Keymaster

    @chantal-admin : you will need to replace the additional css to display the logo and title on small screens.

    Remove this

    @media screen and (max-width: 1024px) {
    	#sidebar-header-top {
    		display: none;
    	}	
    }

    add this css

    @media screen and (min-width: 1024px) {
    	#sidebar-header-top {
    		display: none;
    	}	
    }

    Let me know if this helps resolve your issue.

    Regards,
    Tikaram

    #244397
    chantal-admin
    Participant

    Hello,

    Thank you for your response, but I didn’t talk about sidebar header top (it is perfet for the big screen), but rather of header top (Where the logo and the site title is usually)

    In my header top, I activated logo and site title : I put theses codes for fit just on smaller screen :


    @media
    screen and (min-width: 1024px) {
    #site-logo {
    display: none;
    }
    }


    @media
    screen and (min-width: 1024px) {
    #site-title {
    display: none;
    }
    }

    The site title appears on the phone cell but not appears on 1024px… How can It be on 1024px screen please ?

    Thank you

    #244443
    chantal-admin
    Participant

    J’ai trouvé !!

    Résolu 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Activer logo et titre sur écran 1024 et moins…’ is closed to new replies.