Home › Forums › Iconic One Pro Support › How to custom theme ?
- This topic has 4 replies, 2 voices, and was last updated 5 years, 1 month ago by Themonic-Support.
- AuthorPosts
- October 16, 2019 at 11:41 am #5808fajrialhadiParticipant
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 pxAll of picture : https://prnt.sc/pk19fj
New question in single post.
1. How to hidden / delete Category in single psot ?
Pict : https://prnt.sc/pk1axp2. How to change font stylein content ?
i want to change with :
font-family : Segoe UI
font-size 16px3. How to change font style in related post ?
October 16, 2019 at 3:34 pm #5809Themonic-SupportKeymasterHi,
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
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 thumbnails5)
.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; }
October 16, 2019 at 3:39 pm #5810fajrialhadiParticipantGreats!
1. i’ve a question, how to make Title Post in Homepage like this ?
So, the title in top of summary text.
2. How to show meta info like the picture ?
October 16, 2019 at 3:44 pm #5811fajrialhadiParticipant3. what is the function of child themes ?
all of modification, must be in child themes ?do you have documents about child themes tutorial ?
October 17, 2019 at 2:03 pm #5812Themonic-SupportKeymaster1) 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.
- AuthorPosts
- The topic ‘How to custom theme ?’ is closed to new replies.