Forum Replies Created
-
AuthorPosts
-
Sanjip ShahParticipant
@todd-benton We have now included a search in our forum. Thanks for you suggestion.
Sanjip ShahParticipant@fs1ihr-mso-com I have responded to your same question in the installation forum please read that and contact us via our contact page. Thanks.
Sanjip ShahParticipant@shawnhoffman You will have to edit this function as well. Just remove the title from this function.
Sanjip ShahParticipant@shawnhoffman Where did you paste this code. functions.php of the Child theme or the parent theme?
Sanjip ShahParticipant@edgariraheta In the dashboard, go to Appearance->Theme Options->Design Options Tab->Custom CSS. Paste the following css and click on ‘Save all Changes’.
#main { padding-top: 10px; }
You can increase/decrease the px values you like.Sanjip ShahParticipant@Dominik Great!
Sanjip ShahParticipant@Dominik In the dashboard, go to Revolution Slider->Any of you slider->To Slider Settings. Adjust the Appearance and Position options. There might be some padding there and click on ‘Update’.
Sanjip ShahParticipant@Dominik The videos that you add in the post should be responsive. Can you post a link where you are having the issues?
Sanjip ShahParticipant@petrichorpost The rev slider is in ‘uninstalled state’ by default. Unless you install it from Appearance->Install Plugins it is already uninstalled state.
Sanjip ShahParticipant@shawnhoffman For the page templates other than default page template the titles will appear in the grey part and for the default page template title will appear in the content area. We have designed the theme this way to highlight the titles of unique page templates. You will have to customize this function attitude_header_title function. You could just add
elseif( is_page() ) { $attitude_header_title = get_the_title(); }
just below this code
elseif( is_page_template() ) { $attitude_header_title = get_the_title(); }
Also make a child theme to make this customization so that you won’t lose the changes when you update the theme.
Sanjip ShahParticipant@shawnhoffman Our theme includes the css for the Contact Form 7. Just using the shortcode of the CF7 should be enough. The contact form will be like shown in our demo page here https://www.themehorse.com/preview/attitude/contact-us/.
Sanjip ShahParticipant@jordan-wirkkalagmail-com The file you need to edit is header-extensions.php file. The path of this file is theme folder->library folder->structure folder. The code you need to edit is inside the attitude_headerdetails functions. Add your code/text just above this line
<?php attitude_socialnetworks( $flag ); ?>
which is around line 230. Also use a child theme to make these changes so that you won’t lose the changes when you update the theme.Sanjip ShahParticipant@Hubb Our services widget only support pages and do not support the post. You could use this plugin http://wordpress.org/plugins/siteorigin-panels/ to generate columns in page and use to featured post widget plugin with it. Try this out.
Sanjip ShahParticipant@micronda We understand what you are trying to say. We have designed the theme that way, not to show the featured text for ipad, iphone and other similar small devices.
In the iPhone if you show the featured text it may go beyond the slider area so this might be a issue, however you can use the following custom css to show the featured text in ipad.
In the dashboard, go to Appearance->Theme Options->Design Options Tab->Custom CSS and click on ‘Save all Changes’.@media only screen and (max-width: 1078px) { .featured-title, .featured-content { display: block; } } @media only screen and (max-width: 767px) { .featured-title, .featured-content { display: none; } }
We will be thinking about showing the featured text in all devices including iPhone in an optimized manner in our future updates. Thanks.
Sanjip ShahParticipant@Fexin Please provide a link to the page where you are having this issue so we can look further into the issue.
-
AuthorPosts