• I am using the Hueman theme on a new online learning website. I have developed a child theme. It all works great, however I do not get ANY of the responsive characteristics of the theme when on any mobile device. It as though the theme is unaware of the responsive.css file. I have responsive set to on and dynamic styles and boxed layout set to on.

    Is there something I need to add to the header or some specific place to pick up the responsive theme? I think I am just missing a step.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi, amyjocarlson. Did you get your issue resolved? I see it’s been three weeks and this might be a case of the blind leading the slightly visually impaired, but I wanted to try to help.

    Did you create your own child theme or use the one available for download by the theme author? If yes, you need to leave some of the code in the child theme that you see when you download it, in particular, this part:

    /* Global */
    .mystyle {}
    
    /* Tablet - 800px, 768px & 720px */
    @media only screen and (min-width: 720px) and (max-width: 800px) {
    	.mystyle {}
    }
    
    /* Mobile - 480px & 320px */
    @media only screen and (max-width: 719px) {
    	.mystyle {}
    }
    
    /* Mobile - 320px */
    @media only screen and (max-width: 479px) {
    	.mystyle {}
    }

    Any alterations you make to your child theme’s stylesheet needs to come AFTER the above.

    Please forgive me if I’m stating the obvious. I’m still new at all this.

    Just copy the responsive.css from main theme folder (Hueman) into your child theme folder.

    Thread Starter amyjocarlson

    (@amyjocarlson)

    Heya,

    Thanks. Actually I updated my theme and got ALL of my custom theme css and templates into a child theme, keeping everything that is custom separate from the updated Hueman theme and all is working great now. Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Responsive theme seems to have no effect on my installation’ is closed to new replies.