Customization

Discussion in 'Woodberry WordPress Theme' started by internetmarketingsmarts, Apr 13, 2013.

Thread Status:
Not open for further replies.
  1. internetmarketingsmarts

    internetmarketingsmarts Guest

    Joined:
    Feb 23, 2013
    Messages:
    19
    Likes Received:
    2
    Hi,

    How do you add a manual click to call button on this theme when viewing it on a mobile device? I've seen where your other themes have this but I would to have this functionality on this theme as well.


    How do you change the background to an image and will it be responsive when being viewed on a mobile device?

    Is there a way to add a clickable tell phone number above the slider text or in the upper right hand corner of
    the menu item area?

    Thanks.

    Eddy
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your first issue
    It is not possible to add Tap to Call button in Woodberry theme because every theme have its different functionality and feature, Therefore it is not possible to add feature of one theme in the another theme.

    2.For your second issue


    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    html, body {
    background: url(Enter your image address here) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width:100%
    }
    .header-container {
    background: none;
    }
    .feature-content-container{
    background: none;
    }
    
     
  3. internetmarketingsmarts

    internetmarketingsmarts Guest

    Joined:
    Feb 23, 2013
    Messages:
    19
    Likes Received:
    2
    Thanks.

    1. Does that background custom css work for all themes or just this one?

    2. Since there isn't a way to add a tap to call button, how do I hard code a telephone number to be a click to call link?
    I've tried the following and it's not working on my iphone on this website http://funcraft.1testdemo.com/:

    Code:
    <a href=”callto:12032027757">(203) 202-7757</a>




    Please advise. Thanks
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello Eddy,

    1) Yes this code will work for nearly all themes.

    2) For tap to call:
    Open front-page.php and replace code given below with the code shown in image.

    Code:
    <div class="page-info">
                                  <a class="btn" href="tel:your contact number"><span></span></a>
                  <p class="cell">&nbsp; your contact number</p>
                                                              </div>
    Check image for reference.
    [​IMG]
     
  5. internetmarketingsmarts

    internetmarketingsmarts Guest

    Joined:
    Feb 23, 2013
    Messages:
    19
    Likes Received:
    2
    Thanks, that worked perfectly!:)

    Is that the way I should edit other themes to make tap to call link available for themes that don't have the tap to call button feature?
     
  6. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Yes, You can use this code for other themes but be careful while replacing existing code :).
     
  7. internetmarketingsmarts

    internetmarketingsmarts Guest

    Joined:
    Feb 23, 2013
    Messages:
    19
    Likes Received:
    2
Thread Status:
Not open for further replies.

Share This Page