How to manage tables into the articles.

Posted in: Newspaper
Post count: 28

Hello, I am using Newspaper and this very good in overall. But I am facing some problem when I am pasting tables from the MS Word file. Tables are looking very ugly. So can you tell me how can I manage these tables ?

Example Url : http://edu.yuvayana.org/2015/list-of-vice-president-of-india-1952-2015/

Post count: 7909

Hi,

You can customize with css code and apply this for all tables: http://screencast.com/t/dbhm5cOFv06

table, th, td {
border: 3px double red;
}

Just add the code in Theme Panel > Custom Css: http://screencast.com/t/iS53asKg and change the values how you like, here you can see more css for border: http://www.w3schools.com/css/css_border.asp

Thanks!

Post count: 28

Thanks a Lot Alin 🙂 Now it’s looking much better as I expected.
But there is a problem on mobile devices. only starting part ” from left side” is visible.

Post count: 6600

Hi,

Try this custom css: http://screencast.com/t/Vg8Rde86PV

@media screen and (max-width: 767px){

table {
height: auto !important;
width: 100%
}

.td-post-text-content table {
font-size: 11px !important;
}
}

Thanks

Post count: 28

Thanks a Lot. Now It’s looking good.

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.