Change "home" url

Discussion in 'Local Business WordPress Theme' started by darrenhorne, Aug 4, 2014.

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

    darrenhorne New Member

    Joined:
    Aug 1, 2014
    Messages:
    5
    Likes Received:
    0
    1:- I have a domain name http://www.manvsmedia.org/ which is working fine. And works if I click the logo (top left) and all my pages are variants of that (such as http://www.manvsmedia.org/blog/)

    BUT - when I click the "home" on the menu it goes to http://manvsmediaorg.ipage.com/

    I have been to settings and changed the WordPress Address and the Site address to http://www.manvsmedia.org but it doesnt seem to make a difference.

    2:- I have put a "everything is not okay" image on the top right... and it looks good. But on ipads the end part "ay" or okay is off screen. Any ideas?

    Thanks for the help. This forum has helped answer a lot of my questions already. Appreciate it.
     
  2. darrenhorne

    darrenhorne New Member

    Joined:
    Aug 1, 2014
    Messages:
    5
    Likes Received:
    0
    Sorted 1. It was in appearance / menus etc. Thanks anyway.
     
  3. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    We have checked your website and its seems that you have entered your image in wrong way, so remove your current image code and
    just go to Appearance > Theme Option > Genereal Settings > Top Right Contact Details
    and enter the code given below

    Code:
     <img src="http://manvsmediaorg.ipage.com/wp-content/uploads/2014/08/Transparent-Quickhand1.png">

    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
     @media only screen and (max-width: 480px){
    .call-us img {
    width:100%;
    }
    }

    Thanks & Regards
    Gourav Shrivastava
     
  4. darrenhorne

    darrenhorne New Member

    Joined:
    Aug 1, 2014
    Messages:
    5
    Likes Received:
    0
    Hmm It doesn't seem to have worked on my ipad mini...in portrait at least. Also its added a lot of space underneath the logo and text image. Any chance I can get rid of that space?

    Thanks

    Darren
     
  5. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .call-us img {
    width:100%;
    }
    }
     
    @media only screen and (max-width: 960px) and (min-width: 768px){
    .call-us img {
    width:100%;
    }
    }
     

    This will solve your issue.


    Thanks & Regards
    Gourav Shrivastava
     
  6. darrenhorne

    darrenhorne New Member

    Joined:
    Aug 1, 2014
    Messages:
    5
    Likes Received:
    0
    Hi. It didnt work.

    Also - the social icons work on my computer (as in they appear on the top right) but on mobiles / ipads it does not show youtube or google plus?

    Thanks
     
  7. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    For spacing issue:

    Download the image attached and replace with your current image

    then,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .call-us p {
    margin: 0;
    } 
    For responsive issue:

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    @media only screen and (max-width: 480px){
    .call-us img {
    width:90%;
    }
    }
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .call-us img {
    width:90%;
    }
    }
     
    @media only screen and (max-width: 960px) and (min-width: 768px){
    .call-us img {
    width:90%;
    }
    }


    3.

    We have checked your website and social icons are working fine, I think it is a cache issue, So please check your website in another browser and clear your device cache.This will solve your issue.

    Thanks & Regards
    Gourav Shrivastava
     

    Attached Files:

  8. darrenhorne

    darrenhorne New Member

    Joined:
    Aug 1, 2014
    Messages:
    5
    Likes Received:
    0
    Splendid! Thanks so much for your help. Have a great week. :)
     
Thread Status:
Not open for further replies.

Share This Page