• Resolved izclutchx

    (@izclutchx)


    Alright so my first question would be on the Mobile Display how do I get the side bars to show all the time it hides them when I am viewing this via mobile (even when I check the display desktop mode) box….

    Next question is how come the website theme appears when I am logged into the admin panel on my mobile device but the moment I log out of the admin account and I navigate to my website it then doesnt show the theme I selected and it appears in black and white?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author nobita

    (@nobita)

    Hi @izclutchx

    Now not support switching mobile view , PC view.

    hints for If you will customize

    Remove meta viewport elements.

    
    function raindrops_mobile_meta(){
    	
    	return;
    }
    

    raindrops function always Pluggable

    Remove main media query( @media )

    
    add_action( 'wp_enqueue_scripts', 'my_remove_stylesheet',11 );
    
    function my_remove_stylesheet(){
    	
    	wp_dequeue_style( 'raindrops_responsiveness' );
    }
    

    Note. Sidebars and Content width

    default sidebar width is px (absolute)
    content and exstra sidebar width is %( relative )

    Customizer responsive control

    customize / presentation / layout and sidebars

    Responsive Default Sidebar set No
    Responsive Extra Sidebar set No

    when mobile device, cannot switch theme. Sorry I’m not sure…

    Thank you.

    • This reply was modified 8 years, 1 month ago by nobita.
    Theme Author nobita

    (@nobita)

    I wish you good luck. With a new theme

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘RainDrops Admin’ is closed to new replies.