Sunday, July 5, 2020
Friday, June 12, 2020
How to install two PHP versions in Window XAMPP? - NAINGDroid - Medium
Latest xampp package come with PHP 7 and above. If some of your projects don’t support PHP 7, You can install PHP 5.x and specify which projects use which PHP version.
How to install two PHP versions in Window XAMPP? - NAINGDroid - Medium
How to install two PHP versions in Window XAMPP? - NAINGDroid - Medium
Wednesday, June 10, 2020
Media Queries Breakpoints For Responsive Design In 2020 - DevFacts
Hey Media Queries Breakpoints playing the main role in responsive design. Here we gonna discuss the most standard way in 2020
Media Queries Breakpoints For Responsive Design In 2020 - DevFacts
Media Queries Breakpoints For Responsive Design In 2020 - DevFacts
Tuesday, June 9, 2020
How to Style WordPress Navigation Menus (Updated)
Do you want to style your WordPress navigation menus to change their colors or appearance? While your WordPress theme handles the appearance of your navigation menus, you can easily customize it using CSS to meet your requirements. In this article, we will show you how to style the WordPress navigation menus on your site.
How to Style WordPress Navigation Menus (Updated)
How to Style WordPress Navigation Menus (Updated)
Monday, June 8, 2020
CSS Text Shadow | CSS-Tricks
The first two values specify the length of the shadow offset. The first value specifies the horizontal distance and the second specifies the vertical distance of the shadow. The third value specifies the blur radius and the last value describes the color of the shadow:
1. value = The X-coordinate
2. value = The Y-coordinate
3. value = The blur radius
4. value = The color of the shadow2. value = The Y-coordinate
3. value = The blur radius
CSS Text Shadow | CSS-Tricks
ACF | Hiding empty fields
It is a common task to hide empty field values from your template. This can be achieved by using conditional statements to check the value before rending it.
The basics to conditional a statement is to use an if statement. You can read more about this core PHP function here: http://php.net/manual/en/control-structures.if.php
ACF | Hiding empty fieldsACF | get_field_objects()
Each field contains many settings such as a label, name and type. This function can be used to load these settings as an array along with the field’s value.
ACF | get_field_objects()
ACF | get_field_objects()
Flex order in CSS elements | CSS-Tricks
order | CSS-Tricks
The
order
property is a sub-property of the Flexible Box Layout module.Flex items are displayed in the same order as they appear in the source document by default. The
order
property can be used to change this ordering.How to Increase Maximum File Upload Size in WordPress
How to Increase Maximum File Upload Size in WordPress
- @ini_set( 'upload_max_size' , '64M' );
- @ini_set( 'post_max_size', '64M');
- @ini_set( 'max_execution_time', '300' );