How to custom theme ?

Home Forums Iconic One Pro Support How to custom theme ?

This topic contains 4 replies, has 2 voices, and was last updated by  Themonic-Support 4 years, 6 months ago.

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #5808

    fajrialhadi
    Participant

    Hi, i’ve some question.
    I want to edit my theme like font.

    I’ve mark with three color.

    1. How to change font-family for title post in Homepage ? [Mark on red]
    i wannt to change with : Calibry or Segoe UI font.

    2. How to hidden / delete Read More text in homepage ?
    3. How to hidden / delete avatar picture in homepage ?
    4. How to make fix thumbnail size in homepage ?
    I want to set 125×125 px

    All of picture : https://prnt.sc/pk19fj

    New question in single post.

    1. How to hidden / delete Category in single psot ?
    Pict : https://prnt.sc/pk1axp

    2. How to change font stylein content ?
    i want to change with :
    font-family : Segoe UI
    font-size 16px

    3. How to change font style in related post ?

    #5809

    Hi,

    All of the code below can be pasted in Customizer -> Additional CSS or style.css in child theme, child theme not necessary for this.

    1) Find alternative Google fonts for those and then follow

    Customization Guide for Iconic One Pro with CSS Codes

    Calibri font license is $129 https://www.fonts.com/font/microsoft-corporation/calibri/packages

    Eg. when fonts are included
    Refer: https://themonic.com/customization-guide-for-iconic-one-pro-with-css-codes/ and then replace sans-serif with your font name

    
    .entry-header .entry-title {
        font-family: sans-serif;
    }

    2)

    
    .read-more a {
        display: none;
    }

    3) Iconic One Pro Control Panel – > Main Settings -> Author ID

    4) Search functions.php for // Sets Index Page Thumbnails
    200, 140, true

    change to

    125, 125, true
    After that run the following plugin to generate fresh thumbnails

    Regenerate Thumbnails

    5)

    
    .single .category {
        display: none;
    }

    6) Refer: https://themonic.com/customization-guide-for-iconic-one-pro-with-css-codes/ and then replace sans-serif with your font name

    
    .entry-content {
        font-family: sans-serif;
    }

    7)

    
    .relatedcontent {
        font-family: sans-serif;
    }
    #5810

    fajrialhadi
    Participant

    Greats!

    1. i’ve a question, how to make Title Post in Homepage like this ?

    https://prnt.sc/pk5fzo

    So, the title in top of summary text.

    2. How to show meta info like the picture ?

    #5811

    fajrialhadi
    Participant

    3. what is the function of child themes ?
    all of modification, must be in child themes ?

    do you have documents about child themes tutorial ?

    #5812

    1) Require php modification
    2) Meta info from plugin?

    Both of the above comes under custom work and charged separately. To discuss contact us via contact form.

    3) To learn about child theme refer: https://developer.wordpress.org/themes/advanced-topics/child-themes/
    A sample starter child theme is already available in member area. For eg. if a file with same name is present in child theme, front end will load content of that file first rather than from parent theme.

    Child themes are for advanced users and can be used when you have a lot of php modifications, mostly if you are hiring a developer to customize a theme.

Viewing 5 posts - 1 through 5 (of 5 total)

The topic ‘How to custom theme ?’ is closed to new replies.