Title: monkey-themes's Replies | WordPress.org

---

# monkey-themes

  [  ](https://wordpress.org/support/users/monkey-themes/)

 *   [Profile](https://wordpress.org/support/users/monkey-themes/)
 *   [Topics Started](https://wordpress.org/support/users/monkey-themes/topics/)
 *   [Replies Created](https://wordpress.org/support/users/monkey-themes/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/monkey-themes/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/monkey-themes/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/monkey-themes/engagements/)
 *   [Favorites](https://wordpress.org/support/users/monkey-themes/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 41 total)

1 [2](https://wordpress.org/support/users/monkey-themes/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/monkey-themes/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/monkey-themes/replies/page/2/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] Child Theme Issues](https://wordpress.org/support/topic/child-theme-issues-14/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/child-theme-issues-14/#post-7228265)
 * Hi,
    load a custom stylesheet after the style.min.css
 *     ```
       function ods_child_scripts()
       {
           wp_enqueue_style( 'custom-style', get_stylesheet_directory_uri() . '/custom-style.css' );
       }
       add_action( 'wp_enqueue_scripts', 'ods_child_scripts', 20 );
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] customizing the last post in Homepage](https://wordpress.org/support/topic/customizing-the-last-post-in-homepage/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/customizing-the-last-post-in-homepage/#post-7188155)
 * Hi,
    There will be premium version of small blog on monkey-themes.com pretty 
   soon. The free version does not feature this functionality. Stay tuned! Cheers
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] remove site title in small blog](https://wordpress.org/support/topic/remove-site-title-in-small-blog/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/remove-site-title-in-small-blog/#post-7164796)
 * A possible solution.
    Remove the title on the page, single, and/or lists.
 * 1) Go to the themes path: **wp-content** -> **themes** -> **smallblog** -> **
   template-parts** -> **content-heading.php**
    2) Open the file **content-heading.
   php** with a editor. 3.1) if you want remove the title on the page and single.
 *     ```
       <?php if ( !is_single() or !is_page() ) : ?>
           <h2 class="the-title">
               <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
                   <?php the_title(); ?>
               </a>
           </h2>
       <?php endif; ?>
       ```
   
 * 3.2) if you want remove the title on the lists.
 *     ```
       <?php if ( is_single() or is_page() ) : ?>
           <header>
               <h1 class="the-title" role="heading">
                   <?php the_title(); ?>
               </h1>
           </header>
       <?php endif; ?>
       ```
   
 * 3.3) Else you want remove both, remove all or comment the script.
 *     ```
       <?php /* if ( is_single() or is_page() ) : ?>
           ...
       <?php endif; */ ?>
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] Widen Margins](https://wordpress.org/support/topic/widen-margins/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/widen-margins/#post-7205373)
 * What do you mean to “I would like to widen the margins”?
 * **If you want do a full width page.**
    1) Go to **Backend** –> **pages** –> **
   edit page**. 2) Go to sidebar on the left. On the Box Page Attributes. 3) Select
   the Full Width Page template.
 * **Or you can create a new page template:**
    1) Create a new page file: page-yournametempalte.
   php 2) Into the file write so:
 *     ```
       <?php
       /**
        * Template Name: Your Name Tempalte
        *
        */
       get_header(); ?>
   
       create here your page.
   
       <?php get_footer(); ?>
       ```
   
 * **If you want a Stylesheet modify.**
    Edit the .container class: `.container {
   max-width: your width size; }`
 * ps.: If you want editing the stylesheet or files, please create a [child theme](https://codex.wordpress.org/Child_Themes).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] Removing infobar](https://wordpress.org/support/topic/removing-infobar/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/removing-infobar/#post-7204869)
 * If you update the theme, the files are overwritten.
 * **The solution.**
    Create a child theme and edit your files. [https://codex.wordpress.org/Child_Themes](https://codex.wordpress.org/Child_Themes)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] Header Image](https://wordpress.org/support/topic/header-image-189/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/header-image-189/#post-7156144)
 * Greetings jenthemiddlechild,
    did rfispencer0931 response (thx) solve your issue?
   If not, let us know Cheers
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] Adding child theme](https://wordpress.org/support/topic/adding-child-theme/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/adding-child-theme/#post-7143769)
 * Thank you very much ThePixelMe for your feedback and sharing of your view.
 * [@amylkirst](https://wordpress.org/support/users/amylkirst/) plz let us know 
   if you have any more questions.
    Cheers
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] Put fullscreen picture on static page!](https://wordpress.org/support/topic/put-fullscreen-picture-on-static-page/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/put-fullscreen-picture-on-static-page/#post-7163838)
 * Greeting selinasevil,
    happy you like our work! There will be premium version
   of small blog on monkey-themes.com pretty soon. The free version does not feature
   this functionality. Stay tuned! Cheers
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] Change color](https://wordpress.org/support/topic/change-color-43/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/change-color-43/#post-7137659)
 * Greetings rfispencer0931,
    you can do so with the above mentioned method of creating
   a custom stylesheet. A premium version of small blog with extended functionality
   than the free version will be available soon.
 * Cheers
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] Premium theme?](https://wordpress.org/support/topic/premium-theme-4/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/premium-theme-4/#post-7159723)
 * Greetings selinasevil,
 * We’re happy that you like our work!
 * About the mailing list… actually there is none yet 🙂
 * Simply drop us an email: [hello@monkey-themes.com](https://wordpress.org/support/users/monkey-themes/replies/hello@monkey-themes.com?output_format=md)
   and we’ll keep you posted.
    Btw… the premium version will be released on our 
   upcoming them store monkey-themes.com.
 * Cheers
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] Premium theme?](https://wordpress.org/support/topic/premium-theme-4/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/premium-theme-4/#post-7159700)
 * Premium version will soon be available.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] CSS and widgets resetting](https://wordpress.org/support/topic/css-and-widgets-resetting/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/css-and-widgets-resetting/#post-7131634)
 * Create a child theme.
    [https://codex.wordpress.org/Child_Themes](https://codex.wordpress.org/Child_Themes)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] Change color](https://wordpress.org/support/topic/change-color-43/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/change-color-43/#post-7137528)
 * At the moment there is no option to change the primary color in the Backend.
   
   But you can you do a child theme. Look here: [https://codex.wordpress.org/Child_Themes](https://codex.wordpress.org/Child_Themes)
 * Then create a new custom style.
    **(Example -> custom.style.css)**
 * Into this style file write so:
 *     ```
       a, .text-primary, .btn-primary .badge, .btn-link,
       .the-title a:hover, .info-bar a:hover, .infobar a:hover,
       .widget-list-ul ul li a:hover, .widget ul li a:hover,
       .widget.widget_tag_cloud .tagcloud a:hover,
       .widget.widget_recent_posts article h4 a:hover,
       #footer .f-bottom .copyright a:hover {
           color: #5a7fd3;
       }
   
       .bg-primary, .btn-primary, .btn-primary.disabled, .btn-primary.disabled:hover,
       .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active,
       .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover,
       .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active,
       .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled]
       .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled]
       .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active,
       .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus,
       .the-headline:after, .separator:after, .btn-trigger .trigger,
       .widget .widget-title:after, .social-media a:hover [class^="icon-"], .social-media a:hover [class*=" icon-"],
       .off-canvas .off-canvas-headline .icon-close, #header .btn-search [class^="icon-"], #header .btn-search [class*=" icon-"],
       #comments .comment-list li .comment-body .comment-figure .comment-number,
       #comments #respond .submit, #navigation ul li a:hover {
           background-color: #5a7fd3;
       }
   
       .nav .open > a, .nav .open > a:hover, .nav .open > a:focus,
       .pagination li > a:hover, .pagination li > span:hover,
       #comments #respond input[type=text]:focus, #comments #respond input[type=email]:focus,
       #comments #respond input[type=url]:focus, #comments #respond textarea:focus {
           border-color: #5a7fd3;
       }
   
       .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
           background-color: #5a7fd3;
           border-color: #5a7fd3;
       }
   
       /* -- HOVER -- */
       a:hover,
       a.text-primary:hover, a.text-primary:focus {
           color: #5577c4;
       }
   
       #header .btn-search [class^="icon-"]:hover, #header .btn-search [class*=" icon-"]:hover,
       #footer .anchor:hover, #comments #respond .submit:hover, .btn-primary:focus, .btn-primary.focus,
       .btn-primary:hover, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle,
       .off-canvas .off-canvas-headline .icon-close:hover, #header .btn-search [class^="icon-"]:hover, #header .btn-search [class*=" icon-"]:hover,
       #footer .anchor:hover, #comments #respond .submit:hover, a.bg-primary:hover, a.bg-primary:focus, .btn-primary:focus, .btn-primary.focus,
       .btn-primary:hover, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle,
       .off-canvas .off-canvas-headline .icon-close:hover, #header .btn-search [class^="icon-"]:hover, #header .btn-search [class*=" icon-"]:hover,
       #footer .anchor:hover, #comments #respond .submit:hover,
       #navigation ul li.menu-item-has-children > a:first-child [class^="icon-"]:hover, #navigation ul li.menu-item-has-children > a:first-child [class*=" icon-"]:hover {
           background-color: #5577c4;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] CSS and widgets resetting](https://wordpress.org/support/topic/css-and-widgets-resetting/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/css-and-widgets-resetting/#post-7131534)
 * Create a child theme.
    This is a solution: [https://codex.wordpress.org/Child_Themes](https://codex.wordpress.org/Child_Themes)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Smallblog] CSS and widgets resetting](https://wordpress.org/support/topic/css-and-widgets-resetting/)
 *  Theme Author [monkey-themes](https://wordpress.org/support/users/monkey-themes/)
 * (@monkey-themes)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/css-and-widgets-resetting/#post-7131515)
 * The custom style will be present in the next version 1.5.8.
    For the moment, 
   you must update your custom style manually. A alternative solution that do not
   like,is to rename the theme folder so it will not be updated.

Viewing 15 replies - 1 through 15 (of 41 total)

1 [2](https://wordpress.org/support/users/monkey-themes/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/monkey-themes/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/monkey-themes/replies/page/2/?output_format=md)