CSS Tweaks, WordPress Tweaks
Now that flexbox support is increasing, this CSS applied to the containing element would vertically center the contained item: .container { display: flex; align-items: center; } Use the prefixed version if you also need to target Explorer 10, and old (< 4.4)...
.htacces tweaks, SSL serificats, WordPress Tweaks
RewriteCond %{HTTPS} off [OR]RewriteCond %{HTTP_HOST} !^www\.domain\.com$ [NC]RewriteRule ^(.*)$ https://www.domain.com/$1 [L,R=301] Source: Forcing SSL and WWW using .htaccess – Stack Overflow
CSS Tweaks, Hacking WordPress, WordPress Tweaks
When having text that can’t be changed with the jQuery (in that particular place there is to much javaScriptc that new jQuery don’t affect that particular text) then we need to use CSS: First make text indent (move text for the x pixels to the left) so the...
Hacking WordPress, jQuery for the WordPress, WordPress Tweaks
To be able to add jQuery to the WordPress you first need to create js folder in your theme / child-theme directory. After that create example.js file in the js directory. Then in the functions.php add next code: /*add jquery to the WP*/ add_action(...