I know by default the slider heading/text/buttons are not active. I have used the code provided for others to display, and I am able to change so description does not show, but I can't get rid of the button to leave only the main heading. Is there a more streamline code I could use to display ONLY the heading over the slider image? (no description-no buttons) Thanks, -Brian
Hi, To remove the slider button and description, just paste the code given below in Custom CSS section. (Dashboard->Inkthemes->Theme Options -> Styling Options -> Custom CSS) of your dashboard. For the description: Code: .slider-caption-container p.slide-para { display: none; } For the button: Code: .slider-caption-container a.slide-button { display: none !important; } Hope this helps...! Thanks & Regards! Akbar InkThemes.com
You are most Welcome! Always feel free to ask your queries at our support forum: http://inkthemes.com/community/ and at our email [email protected] We would be glad to assist you... Have a nice day! Thanks & Regards! Akbar InkThemes.com
One more thing on this. I want to remove all but the heading on mobile, and leave all showing on desktop. Thanks in advance.
Hello, It seems like you want to remove all heading on mobile devices, not on the desktop. If so, then just paste the code given below in Custom CSS section. (Dashboard->Inkthemes->Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: @media (max-width: 991px) and (min-width: 768px){ .slide-h1 { font-size: 33px; line-height: 35px; display: none; } } Hope this helps...! Thanks & Regards! Akbar InkThemes.com
Almost. Desktop - all show (Heading, description, button) Mobile - Show ONLY Heading (no description, no button) Thanks.
Hi, You want (description & button) on mobile? It would be better for us to understand your query with the help of some edited screenshots. Please share some screenshots of the concerned areas of your site. So that we can deliver you an exact and appropriate solution to you, Thanks & Regards! Akbar InkThemes.com PS: You can create your screenshots using screenpresso (http://www.screenpresso.com).
Hi, For the desired changes, just paste the code given below in Custom CSS section. (Dashboard->Inkthemes->Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: @media (max-width: 767px){ .nivo-caption { visibility: inherit; } } @media (max-width: 767px){ p.slide-para { display: none; } } @media (max-width: 767px){ .nivo-caption a.slide-button { display: none !important; } } @media (max-width: 767px){ .slide-h1 { font-size: 25px; } } Hope this helps...! Thanks & Regards! Akbar InkThemes.com
You are most Welcome! Always feel free to ask your queries at our support forum: http://inkthemes.com/community/ and at our email [email protected] We would be glad to assist you... Have a nice day! Thanks & Regards! Akbar InkThemes.com