"line-height", "letter-spacing" should not be used "px" unit.
If you use "px" unit, it is not changed "automatically" when the font size was changed. like in PC or tablet or mobile.
- Check
wp-config.php
permission(Set644
) - Show error setting on
.htaccess
php_flag display_errors on
- Set debug mode on
wp-config.php
- Access by Firefox.(not Chrome)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
save this file as "rendered_fonts.js" | |
yarn add puppeteer | |
node rendered_fonts.js | |
*/ | |
const puppeteer = require('puppeteer'); | |
(async () => { | |
const browser = await puppeteer.launch(); | |
const page = await browser.newPage(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Import everything needed to edit video clips | |
from moviepy.editor import * | |
from vectortween.PointAnimation import PointAnimation | |
fps = 25 | |
duration = 10 | |
W = 2000 | |
H = 500 | |
# Generate a text clip |
OlderNewer