Skip to main content

Posts

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

How to Increase Media File Maximum Upload Size in WordPress

WordPress is a powerhouse with so many themes and plugins that allow you to build just about any kind of website. From ecommerce to a simple blog, WordPress has you covered. However, when choosing a  web hosting for WordPress , you should consider performance, security, and support in the first place. If you are building a WordPress website that hosts a portfolio with large image files or a video hosting site with single media file size running into GBs, then you might face a roadblock of not being able to upload media files larger than 25MB (in most cases). 500 Internal Server error  always seems to come at the most untimely manner and users suddenly go to find how to get a WordPress website online. By default, the maximum upload size in WordPress ranges from 2MB to 150MB depending on the settings of your web hosting provider is giving by default. To check what is the current max upload size limit in your WordPress site then navigate to  WP Admin → ...