A Few Questions

Posted in: Newspaper
Post count: 19

Hello,

How can I hide the next and previous post links on desktop view and show them on mobile?

How can I reduce the dark gradient that is shown on the Big sliders? I don’t want it gone completely but just reduced so it’s not so dark. I would also like to adjust the speed of the zoom effect if possible.

Could you please tell me what css should be used for an email/text input box and submit button so that it stays inline and lined up on both desktop and mobile views? Right now the submit button drops below and the text input on mobile view as well as the text input is not shrinking and stretching with the different view.

Thank You

Post count: 23312

Hello kapunas,

If you want to hide the Next/Prev button for desktop and show them for the mobile mode you have to use a bit of CSS code. Please try the code below and place it in Theme panel->Custom CSS area.

The code is ->

@media (min-width:768px){
.td-next-prev-wrap {
display:none;
}
}

If you want to reduce the dark gradient for Big Sliders, you have to use a bit of CSS code. Try the code below.

The code is ->

.td-module-thumb a:last-child:before {
background: linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,.4) 100%)!important;
}

For your final request, please provide more details about what you want to change because I do not understand better. Also, please provide your website URL so I can further inspect the place.

Thanks.

Post count: 19

I got the third issue sorted. Thank you for the quick help, that did the trick.

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