I haven't made any CSS changes to the slider, but the headings are overlapping. Anyone have a solution?
Hello, The slider description area is deigned to show the short description text of your slider. But if you still want to show bulk text in your slider description area then, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: #featured ul.ui-tabs-nav li span p { margin-top: -18px; font-size: 10px; } #featured ul.ui-tabs-nav li span h1 { font-size: 14px; } Note: Updated version of theme is available in your members area, download it from there and upload it. Login here: http://inkthemes.com/members/member/index
Did you also notice that apostrophe's are turning into "//" ? This is also happening in the "Feature Page Headings". I've temporarily corrected it by changing the language in the Feature Page Headings, but this seems to be a template issue.
Hello, Could you please provide the following information listed below. Thread Link: http://www.inkthemes.com/community/threads/slider-headings-overlapping.6715/ Your Website URL: WordPress Username: WordPress Password: Send this information on our email at [email protected] We will check and try to resolve your issue.
Interesting. After adding the above code (for the sliders), the "//" problem returned to both sliders and feature headings. Deactivating each plugin did not solve the problem either.
Hello, For backslashes try code given below. Add this code in functions.php file. Appearance > Editor > functions.php Code: if ( get_magic_quotes_gpc() ) { $_GET = stripslashes_deep($_GET ); $_POST = stripslashes_deep($_POST ); $_COOKIE = stripslashes_deep($_COOKIE); }