Forum Replies Created
-
AuthorPosts
-
Sanjip ShahParticipant
@Jo For different screen devices you will have to write corresponding media queries and respective css. You will have to hire a developer on this one.
Sanjip ShahParticipant@ctsma Go to the post in the dashboard, in the post editor screen you will see the ‘screen options’ link in the top right then click on it
and check the ‘Excerpt’ option. Now you should be able to see the ‘Excerpt’ option box somewhere in your screen.Sanjip ShahParticipant@jdlc13 The pro version have multiple color schemes and you can also choose color for different elements. So, if you purchase the pro version you will have this feature. If you upgrade to the pro version none of you content, settings will not be lost and it will still remain.
Sanjip ShahParticipant@Marta I just visited your site and found that the font size for the service title 20px, so I think you have fixed the issue now.
Sanjip ShahParticipant@msattolo We will have to look into. Once we come up with something we will get back to you.
Sanjip ShahParticipant@pMCs Please provide link to your pages where you want this. We will look into it and provide the custom css.
Sanjip ShahParticipant@larckco Please provide a link into to your site so that we can look into it further.
Sanjip ShahParticipant@Jo Okay. Great!
Sanjip ShahParticipant@Jo You can try the following css. You can change the px value according to your liking.
.hgroup-wrap img { margin-left: 144px; }
October 7, 2013 at 8:21 am in reply to: mail social icon link (Attitude Pro) – opens new page in Chrome…? #4453Sanjip ShahParticipant@jackie7 The social links in our theme are set to open in a new browser. We will replicate this issue in our testing environment and we will back to you on this one once we come up with anything. Thanks for the feedback as we previously did not know about this issue.
Sanjip ShahParticipant@SavvyVeggieYou could use the custom css option for this. In the dashboard, go to Appearance->Theme Options->Design Options Tab->Custom CSS. Paste the following css and click on save changes.
If you want to remove it from just the “Blog Full Content Display” template use the following css..page-template-page-template-blog-full-content-php .page-title-wrap { display: none; }
If you want to completely remove ti then use the following css.
.page-title-wrap { display: none; }
Hope this helps.
Sanjip ShahParticipant@Annemariehorse Okay. Great!
Sanjip ShahParticipant@SavvyVeggie Currently there is no such option available. You will have to hire a developer to add this customization.
Sanjip ShahParticipant@msattolo Currently our theme is not fully compatible with the translate plugins like WPML that you are using. So, there may be issues regarding certain parts mainly in the theme options area.
Sanjip ShahParticipant@chavalu To learn about how the functions of parent theme are unhooked from an action hook and how a function from child theme is added to action hook you can visit this link http://themeshaper.com/2009/05/25/action-hooks-wordpress-child-themes/. Below is an example of how its done. Put this code in the functions.php file of the child theme inside a php tag ( <?php code here ?> )
add_action( ‘init’, ‘attitude_remove_parent_function’ ); /** * Removes parent function attached to hook */ function attitude_remove_parent_function(){ remove_action( ‘attitude_header’, ‘attitude_headerdetails’, 10 ); } add_action( ‘attitude_header’, ‘attitude_child_headerdetails’, 10 ); /** * Add your custom function */ function attitude_child_headerdetails() { // Copy all the content inside the attitude_headerdetails function of parent theme, paste here and make necessary changes here. }
-
AuthorPosts