• Hi all, I hope the community can help me on this, since the developer cannot because it’s a “custom change”. Thanks folks.

    I am using the Magnus responsive theme purchased from Mojo themes.
    How do I change the size of the post title boxes so that they include the entire title, not partially?
    For example on this page: https://myrtlebeachbulletin.com/category/lifestyle
    “TOP 9 BEST SHOPS TO…” should read “TOP 9 BEST SHOPS TO POKE AROUND IN MYRTLE BEACH.”
    How do I change the sample text below the post image to show only the first line?
    So it only reads the “by author name” text.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello MBBulletin!

    That looks like an easy one. If you have a child theme it would be simple to change in order to get what you want.
    Do you know if you are using a child theme or not?

    Cheers.

    Thread Starter MBBulletin

    (@mbbulletin)

    I don’t know if I am,but how can I be sure?

    Thread Starter MBBulletin

    (@mbbulletin)

    Here is what I did to create a child theme so far:

    1. Made “magnus-child” folder under wp-content>themes
    2. Made “functions.php” and “style.css” files under “magnus-child”.
    3. Put this into the css file:

    /*
     Theme Name:   Magnus Child
     Theme URI:    https://bekero.com
     Description:  Magnus Child Theme
     Author:       Beke
     Author URI:   https://bekero.com
     Template:     magnus
     Version:      1.0.0
     License:      GNU General Public License version 3.0
     License URI:  https://www.gnu.org/licenses/gpl-3.0.html
     Tags:         two-columns, right-sidebar, fixed-width, custom-background, custom-colors, theme-options, translation-ready
     Text Domain:  magnus-child
    */

    4. Put this into the php file:

    <?php
    add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
    function theme_enqueue_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    
    }
    
    function use_parent_theme_stylesheet() {
        // Use the parent theme's stylesheet
        return get_template_directory_uri() . '/style.css';
    }
    
    function my_theme_styles() {
        $themeVersion = wp_get_theme()->get('Version');
    
        // Enqueue our style.css with our own version
        wp_enqueue_style('child-theme-style', get_stylesheet_directory_uri() . '/style.css',
            array(), $themeVersion);
    }
    
    // Filter get_stylesheet_uri() to return the parent theme's stylesheet
    add_filter('stylesheet_uri', 'use_parent_theme_stylesheet');
    
    // Enqueue this theme's scripts and styles (after parent theme)
    add_action('wp_enqueue_scripts', 'my_theme_styles', 20);

    I would like to know how to correctly put in the respective css files, as there is more than one, for the enqueue process.
    In the parent theme folder there is a “style.css” file, and a css folder containing: format.css, prettyPhoto.css, refineslide.css, reset.css, responsive.css, and superfish.css.
    Can anyone tell me what corrections to make?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Theme: Magnus by Beke]Post title box and text’ is closed to new replies.