Forum Replies Created

Viewing 15 replies - 1 through 15 (of 41 total)
  • Theme Author monkey-themes

    (@monkey-themes)

    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 );
    Theme Author monkey-themes

    (@monkey-themes)

    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

    Theme Author monkey-themes

    (@monkey-themes)

    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; */ ?>

    Theme Author monkey-themes

    (@monkey-themes)

    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.

    Theme Author monkey-themes

    (@monkey-themes)

    If you update the theme, the files are overwritten.

    The solution.
    Create a child theme and edit your files.
    https://codex.ww.wp.xz.cn/Child_Themes

    Theme Author monkey-themes

    (@monkey-themes)

    Greetings jenthemiddlechild,
    did rfispencer0931 response (thx) solve your issue?
    If not, let us know
    Cheers

    Theme Author monkey-themes

    (@monkey-themes)

    Thank you very much ThePixelMe for your feedback and sharing of your view.

    @amylkirst plz let us know if you have any more questions.
    Cheers

    Theme Author monkey-themes

    (@monkey-themes)

    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

    Theme Author monkey-themes

    (@monkey-themes)

    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

    Theme Author monkey-themes

    (@monkey-themes)

    Greetings selinasevil,

    We’re happy that you like our work!

    About the mailing list… actually there is none yet 🙂

    Simply drop us an email: [email protected] and we’ll keep you posted.
    Btw… the premium version will be released on our upcoming them store monkey-themes.com.

    Cheers

    Theme Author monkey-themes

    (@monkey-themes)

    Premium version will soon be available.

    Theme Author monkey-themes

    (@monkey-themes)

    Theme Author monkey-themes

    (@monkey-themes)

    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.ww.wp.xz.cn/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;
    }

    Theme Author monkey-themes

    (@monkey-themes)

    Create a child theme.
    This is a solution:
    https://codex.ww.wp.xz.cn/Child_Themes

    Theme Author monkey-themes

    (@monkey-themes)

    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)