Replace WP default Logo with simple PHP function After WP installed, the login screen will displace a default logo Replace the default logo by simple PHP function Since this is going to edit the theme, it is recommend to do this in child theme. This will prevent the PHP function being removed after the theme […]
Author Archives: Bryan Tong
When widget Input text color same as background Not all theme works well with 3rd parties plugin widget. Text and background color might be the same and difficult to read. Below CSS code will help to address the visibility issue. footer .widget-item #s:focus, #footer.dark-style .widget-item input[type=email]:focus, #footer.dark-style .widget-item input[type=text]:focus, #footer.dark-style .widget-item textarea:focus { color: #0c0c0c; […]