Changeset 3202118
- Timestamp:
- 12/04/2024 07:32:56 AM (16 months ago)
- Location:
- custom-css-for-elementor
- Files:
-
- 2 edited
-
tags/2.1.0/readme.txt (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-css-for-elementor/tags/2.1.0/readme.txt
r3202116 r3202118 68 68 2. Add the following PHP code snippet: 69 69 70 `add_filter( 'custom_css_for_elementor_breakpoints' , function( $default_breakpoints ) { 70 ``` 71 add_filter( 'custom_css_for_elementor_breakpoints' , function( $default_breakpoints ) { 71 72 $default_breakpoints['tablet'] = 768; // change this value 72 73 return $default_breakpoints; 73 }, 20, 1);` 74 }, 20, 1); 75 ``` 74 76 3. Save the file. 75 77 … … 80 82 2. Insert the following PHP code: 81 83 82 `add_filter( 'custom_css_for_elementor_breakpoints' , function( $default_breakpoints ) { 84 ``` 85 add_filter( 'custom_css_for_elementor_breakpoints' , function( $default_breakpoints ) { 83 86 $default_breakpoints['mobile'] = 425; // change this value 84 87 return $default_breakpoints; 85 }, 20, 1);` 88 }, 20, 1); 89 ``` 86 90 3. Save the changes. 87 91 -
custom-css-for-elementor/trunk/readme.txt
r3202116 r3202118 68 68 2. Add the following PHP code snippet: 69 69 70 `add_filter( 'custom_css_for_elementor_breakpoints' , function( $default_breakpoints ) { 70 ``` 71 add_filter( 'custom_css_for_elementor_breakpoints' , function( $default_breakpoints ) { 71 72 $default_breakpoints['tablet'] = 768; // change this value 72 73 return $default_breakpoints; 73 }, 20, 1);` 74 }, 20, 1); 75 ``` 74 76 3. Save the file. 75 77 … … 80 82 2. Insert the following PHP code: 81 83 82 `add_filter( 'custom_css_for_elementor_breakpoints' , function( $default_breakpoints ) { 84 ``` 85 add_filter( 'custom_css_for_elementor_breakpoints' , function( $default_breakpoints ) { 83 86 $default_breakpoints['mobile'] = 425; // change this value 84 87 return $default_breakpoints; 85 }, 20, 1);` 88 }, 20, 1); 89 ``` 86 90 3. Save the changes. 87 91
Note: See TracChangeset
for help on using the changeset viewer.