├── images └── dflydev-header.png ├── style.css └── functions.php /images/dflydev-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dflydev/d2code-dflydev-wp-theme/master/images/dflydev-header.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: d2code dflydev 3 | Theme URI: http://dflydev.com/ 4 | Description: d2code dflydev WordPress Theme. 5 | Author: Dragonfly Development 6 | Template: d2code-core-wp-theme 7 | Version: 0.1 8 | */ 9 | 10 | #site-title span a { 11 | display: block; 12 | margin-bottom: 30px; 13 | text-indent: -90000px; 14 | width: 195px; 15 | height: 48px; 16 | background-image: url(images/dflydev-header.png); 17 | margin-left: 0px; 18 | } 19 | #site-description { display: none; } -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 | 16 | 17 | 18 | --------------------------------------------------------------------------------