Theme supportCategory: GeneralEdit text and title margin fix
Deepak asked 2 years ago

I have a small request, can you please le me know where can I find the function to edit (more…) that appears below post summary on index page, I have tried a lot but just not abel to find this text and not able to disable this . Also how can i align both post title and text , currently there is slight margin compared to title and body. I will really appreciate your help.
This is for simplifiedblog template for wordpress.

Leave a Reply

1 Answers
Best Answer
PCoffee Staff answered 2 years ago

Hi deepak,

I am glad you are interested in the theme.

1) To edit “more” text look here: https://codex.wordpress.org/Function_Reference/the_content
in content templates in the theme you can see the_content() or the_excerpt() tags, modify them as explained in the previous link. For example:+

<?php the_content(‘I want to read more!’); ?>

2) Look into style.css
Go to line 131:

.postcontent, #comment-area {
margin: 1em 1.4em 1em 8%;
}

Change 8% to 2em, it will make postcontent on the same line as the title.

Be aware that all the changes you make to theme files will be overwritten when the theme is updated. If you plan to make serious alterations - you should create a child theme.

Leave a Reply

Your Answer

18 + 2 =