Skip to main content

Posts

Showing posts from January, 2020

Media Queries for Desktop, Tablet, Mobile - CSS

Media Queries for Desktop, Tablet, Mobile - CSS Copy and paste it to your CSS text file. /* ##Device = Desktops ##Screen = 1281px to higher resolution desktops */ @media ( min-width : 1281 px ) { / / CSS } /* ##Device = Laptops, Desktops ##Screen = B/w 1025px to 1280px */ @media ( min-width : 1025 px ) and ( max-width : 1280 px ) { / / CSS } /* ##Device = Tablets, Ipads (portrait) ##Screen = B/w 768px to 1024px */ @media ( min-width : 768 px ) and ( max-width : 1024 px ) { / / CSS } /* ##Device = Tablets, Ipads (landscape) ##Screen = B/w 768px to 1024px */ @media ( min-width : 768 px ) and ( max-width : 1024 px ) and ( orientation : landscape) { / / CSS } /* ##Device = Low Resolution Tablets, Mobiles (Landscape) ##Screen = B/w 481px to 767px */ @media ( min-width : 481 px ) and ( max-width : 767 px ) { / / CSS } /* ##Device = Most of the Smartphones

Ajax Error!!! error – On Slider Revolution

Ajax Error!!! error – On Slider Revolution ? “Try increasing the memory in your “wp-config.php” file”, simply add these lines on your WordPress wp-config file” ini_set('memory_limit', '256M'); ini_set('upload_max_filesize', '128M'); ini_set('post_max_size', '128M'); ini_set('file_uploads', 'On'); ini_set('max_execution_time', '3000'); ini_set('file_uploads', 'On'); I hope this will help you. Thank you