How to use custom variables in Swiper.js
Swiper.js is a customizable JavaScript library that allows you to modify the design using CSS variables. This article describes examples of using custom variables in Swiper.js.
Swiper.js is a customizable JavaScript library that allows you to modify the design using CSS variables. This article describes examples of using custom variables in Swiper.js.
This section explains how to use CSS to make text vertical and also rotate it 90 degrees. This is accomplished by combining two CSS properties: writing-mode: vertical-rl; and text-orientation: sideways;. Note, however, that some properties are not supported by all browsers.
How to knock down vertical text by 90 degrees with CSS Read More »
Bootstrap’s grid system is used to divide content into columns. Sometimes, however, you may want to create new rows. One way to accomplish this is to use the w-100 class. This class sets the width of the element to 100%, resulting in the next column being pushed out into a new row.
How to use the w-100 element to break lines in a Bootstrap grid Read More »
HTML data attributes are a convenient way to add custom data to an element, but attribute names cannot contain uppercase letters. This is due to HTML specifications; if you use attribute names that contain uppercase letters, the browser may not recognize them correctly. This article explains why and how to resolve this issue.
Capital letters cannot be used in HTML data attributes. Read More »
Due to delays in rendering ACF Blocks, there can be problems applying JavaScript scripts. To solve this, you need to initialize your scripts using the ACF action hook ‘render_block_preview’. This article details how to do this.
How to apply rendering delays and scripts in ACF Blocks Read More »
Even if CSS line-height: 1;
is set, there may be margins above and below some elements. This is the result of including not only the height of the text but also the height of the entire line. One way to remove such margins is to apply negative margins to the: :before and
::after pseudo-elements
. However, negative margins should be used with caution.
Top and bottom margins despite line-height: 1; and countermeasures Read More »
The iPhone’s “Reduce parallax effect” setting may affect Bootstrap’s transition effect. To resolve this issue, set the relevant section of Bootstrap’s SCSS configuration file “_variables.scss” to false. However, to respect the user experience, this setting change should be done carefully.
iPhone parallax effect reduction settings and Bootstrap transition Read More »
When BrowserSync does not work, first check to see if the source code has been rewritten in an unintended way. In particular, BrowserSync will not function properly if unintended characters are mixed in at the beginning of the HTML.
If the colspan attribute does not work on the td element of a table, this section explains the causes and countermeasures. applying CSS display: flex; to the td element may change the behavior of the table cell, so a wrapper element is created inside the table cell to apply display: flex;. flex; inside the table cell.
Checkpoints and countermeasures when COLSPAN does not work Read More »
If an image cannot be converted to WebP format, the image may be in CMYK color mode. This article explains how to check the color mode of an image and convert it to RGB mode.
Image conversion errors to WebP and how to check CMYK images Read More »
Since the user agent has changed for the iPad OS, it may not be recognized as an iPad by the conventional JavaScript-based device determination. This section describes how to resolve this issue.
How to change the user agent of iPad OS and how to determine the device by JavaScript Read More »
Describes how to resolve a problem with touch screen devices such as the iPhone that requires two taps on the a link to get a response.
This section describes how to configure the PHP Nginx PHP-FPM environment to resolve the “504 Gateway Time-out” error.
Countermeasure for “504 Gateway Time-out” error in PHP Nginx PHP-FPM environment Read More »
Describes how to avoid timeouts when importing large amounts of data into WordPress.
Countermeasure against timeouts when importing large amounts of data in WordPress Read More »
This article describes how to deal with file size check errors that occur with the Attachment Importer plugin.
How to deal with file size check errors in the Attachment Importer Read More »
This article describes an issue that causes conflicts between Bootstrap5’s default smooth scrolling settings and jQuery’s smooth scrolling feature, and its solution.
Smooth scrolling conflict between Bootstrap5 and jQuery Read More »
This article explains how to use JavaScript to determine the use of the back button and how to navigate within a site. This information can be used for features such as opening skips, for example.
How to identify the back button and site navigation Read More »
This section describes how to prevent layout shifts using the flex-shrink property of Flexbox. In particular, setting the value of flex-shrink to 0 reduces the possibility of layout shifts.
Provides a solution to the problem of YouTube not playing properly when returning with the browser’s back button by using the onPlayerStateChange event to play the video.
Solution to YouTube playback problem when returning with the back button Read More »
How to use PHP global variables in header.php or function.php and its advantages.
How to use PHP global variables in header.php or function.php Read More »
Provides a solution to the problem of not being able to retrieve taxonomy items with get_terms. By setting specific arguments, this problem can be easily solved.
Provides an easy way to solve the problem of visible borders on button clicks in Bootstrap 5.
Solution to visible border on button click in bootstrap5 Read More »
Provides a solution to the problem of the first tap not responding when loading a screen on the iPhone; simply change the settings in Instagram Feed Pro to solve this problem.
Solution to problem with first tap not working when loading screen on iPhone Read More »
This section describes the compatibility issue between WP Retina and Responsive Image method and its solution.
WP Retina and Responsive Image method compatibility issues and solutions Read More »
This section describes the problem of webp format images not being displayed in the local environment and how to resolve it.
How to solve the problem of webp not showing up locally Read More »
This section describes a problem with the fibers package causing errors in Node.js version 16 and how to resolve it.
Error resolution for fibers not supporting Node.js 16 Read More »
This section describes the problem of images in the flex view being stretched vertically in Safari on iOS and how to resolve the problem.
How to solve the problem of images in flex view stretching vertically in Safari on iOS Read More »
This section describes problems with disabling and removing the WordPress plugin “Accept Donations with PayPal” and how to resolve them.
This section describes the WP_Query settings for pagination on fixed pages.’ If you set ‘no_found_rows’ => true, pagination may not be displayed.
This section explains how to deal with the case where yum is locked and cannot be updated after forcibly terminating yum update. Specifically, force termination of the relevant process and deletion of yum pid file.