If you could please provide a link to the website, it would allow us to see what needs to be changed.
Thanx for the reply. I have imported my blog from BlogSpot and all the text in imported blogs is aligned to the left and not justified. Though the text of new postss on WordPress is properly aligned and justified but there is a problem with all the earlier posts imported from BlogSpot. Please find the link below where the text is center and justified.
http://perkymegs.com/2016/02/stunning-silver-jewellery-shopping-at-chandni-chowk/
And the link below where the text is not justified and aligned left and not center. Also you can notice weird lines (borders may be) above and below photos. There are the imported posts from blogger.
http://perkymegs.com/2015/12/my-november-jewellery-shopping-hau/d
I would try adding the following to your child theme’s stylesheet:
To center the text:
.MsoNormal { text-align: center; }
To remove the lines:
td { border: none; }
Does that give you the effect you are looking for?
Great!! The first code regarding the text alignment is working fine for me….Thank you so much. But the second code regarding removing the border lines above and below the images in posts is not working….I have added it in custom css file but nothing changed. Can you please suggest something else?
I’m glad to hear the first line worked! Could you please try the following code to see if it removes the extra line?
table th,
table td {
border-top: 1px solid #ddd;
}
Thanks for the reply but its not working. The thin line is still there on all my earlier posts.
I’m so sorry, I didn’t actually change the code that was already in there! I meant to type the following:
table th,
table td {
border-top: none;
}
Does that make any difference?