badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Sanjip Shah

Forum Replies Created

Viewing 15 posts - 616 through 630 (of 846 total)
  • Author
    Posts
  • in reply to: Centralize footer #4514
    Sanjip Shah
    Participant

    @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.

    in reply to: YouTube Videos in Exceprts #4513
    Sanjip Shah
    Participant

    @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.

    in reply to: Hover Font Color #4464
    Sanjip Shah
    Participant

    @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.

    in reply to: Problem with service title links #4463
    Sanjip Shah
    Participant

    @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.

    in reply to: Translating slogan #4460
    Sanjip Shah
    Participant

    @msattolo We will have to look into. Once we come up with something we will get back to you.

    in reply to: Disable appearance of page titles on pages #4457
    Sanjip Shah
    Participant

    @pMCs Please provide link to your pages where you want this. We will look into it and provide the custom css.

    in reply to: Sidebar Layout #4456
    Sanjip Shah
    Participant

    @larckco Please provide a link into to your site so that we can look into it further.

    in reply to: Horizontal lines #4455
    Sanjip Shah
    Participant

    @Jo Okay. Great!

    in reply to: Centralize footer #4454
    Sanjip Shah
    Participant

    @Jo You can try the following css. You can change the px value according to your liking.

    .hgroup-wrap img {
        margin-left: 144px;
    }
    Sanjip Shah
    Participant

    @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.

    in reply to: How to remove Page Title Wrap #4452
    Sanjip Shah
    Participant

    @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.

    in reply to: Menu on iPhone #4451
    Sanjip Shah
    Participant

    @Annemariehorse Okay. Great!

    in reply to: How do I get rid of the search box in the header? #4450
    Sanjip Shah
    Participant

    @SavvyVeggie Currently there is no such option available. You will have to hire a developer to add this customization.

    in reply to: Translating slogan #4402
    Sanjip Shah
    Participant

    @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.

    in reply to: Trying to add a phone number to the header area #4401
    Sanjip Shah
    Participant

    @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.
    }
Viewing 15 posts - 616 through 630 (of 846 total)