How to hide the slider in categories

Posted in: Newspaper
Post count: 24

Hello,

I would like to know how I can hide the slider which appears in category section. Take a look: http://es.tinypic.com/r/25iqclk/8

Secondly, I would like to know how I can establish the size of the typography smaller in tablets and smartphone. Now, the font size is so much bigger and I have to scroll so much more along the page.

Thanks

Post count: 854

1. You have to go to Theme panel, select Categories and disable the Show Featured Slider property like this ? http://screencast.com/t/igMtrSAe

2. For your second question you have to write a custom CSS for both layouts, one for smartphones and one for tablets, like this:

/* responsive phone */

@media
(max-width: 767px) {
article h1.entry-title {
font-size: 20px !important;
}
.td-post-text-content p{
font-size: 10px;
}
}

/* responsive portrait tablet */

@media
(min-width: 768px) and (max-width: 1018px) {

article h1.entry-title {
font-size: 20px !important;
}
.td-post-text-content p{
font-size: 10px;
}
}

Add this code to your Custom CSS in Theme Panel and check to see the difference.

Thank’s for your question,

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