Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #86863
    creativesigns
    Participant

    Hi. I’ve just started using wordpress today and am using catch responsive free theme. Can you please help me with a few things..
    What code is needed to turn off hyphenation.
    Can i add actual email address and telephone number to header section.
    How can i change colour of social icons and the contact details i would like in header.
    Do i need pro to be able to use image slider?
    If i buy pro can i use it on more than one site as we are going to have a couple of sites at work.
    Many thanks for your help
    Karen

    #86875
    Pratik
    Keymaster

    Hi @creatativesigns,

    Here is the reply to your questions:

    What code is needed to turn off hyphenation.

    Can you please post in your site url so that I can check and see where hyphenation is occurring. Also, it will be better if you can point me to where the undesired hyphenation is occurring. Then I can provide you with custom CSS.

    Can i add actual email address and telephone number to header section.

    You can add the email address and phone via Appearance=> Customize=> Social Links. There should be options to add your email and phone number. The icons will show up on saving the icons in your social icons area.

    How can i change colour of social icons and the contact details i would like in header.

    You will need to add them, then give me your site url. Then I will provide you with CSS code to change it.

    Do i need pro to be able to use image slider?

    The free version only supports Featured Page Slider. If you upgrade to pro version, you will be able to use Featured Image Slider. Mode details about free and pro version here.

    If i buy pro can i use it on more than one site as we are going to have a couple of sites at work.

    Yes you can use it on multiple sites.

    Regards,
    Pratik

    #86923
    creativesigns
    Participant

    Hi Pratik

    Thanks for your reply. My site is http://www.creativesigns.uk.com

    Hyphenation is on most pages but just seems to be when viewing on desktop, not seeing it when looking on mobile.

    I have already enabled email and telephone via social links but would prefer to have actual phone number and email displayed rather than an icon. Is this possible please?

    Image slider – can i turn off the box and description that is overlaid on bottom of each image, i really dislike this. Is this a pro function?

    Many thanks for your help

    Kind regards
    Karen

    #86938
    Pratik
    Keymaster

    Hi Karen,
    Here is my reply:

    Hyphenation is on most pages but just seems to be when viewing on desktop, not seeing it when looking on mobile.

    You can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:

    
    p {
      -moz-hyphens: none;
      -ms-hyphens: none;
      -webkit-hyphens: none;
      hyphens: none;
    }
    

    This should disable hyphen in most places. Let me know if this does not do it. Provide me the link for that page/post and I will look into it again.

    I have already enabled email and telephone via social links but would prefer to have actual phone number and email displayed rather than an icon. Is this possible please?

    It is possible, but you will need to have a bit of knowledge about customization, CSS and HTML. OR you can upgrade to Pro version that has a Widget Area in that place, os you can just add the widget you require there.

    To do it in free version, first you need to make a Child Theme. Its details are here.

    Then, in the Child Theme’s functions.php file, you will need to copy lines 201 to 218 from current theme at catch-responsive/inc/catch-responsive-structure.php and then add your HTML code after line 216. Your function should look like this.

    Image slider – can i turn off the box and description that is overlaid on bottom of each image, i really dislike this. Is this a pro function?

    In pro version, you can use Featured Image Slider and remove this box. In free version, you can hide this by adding following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:

    
    #feature-slider .entry-container {
        display: none;
    }
    

    Let me know how it works out.

    Regards,
    Pratik

    #87171
    creativesigns
    Participant

    Hi Pratik

    Wow you’re brilliant thank you that’s sorted the hyphenation and slider.

    I have another question please. On page http://creativesigns.uk.com/school-signs/
    I have square image gallery at bottom of page. I wanted to have a link on each image so when clicked it will take you through to a new page. I can’t find a way to add a link to the gallery images, is it possible please.
    Many thanks
    Karen

    #87208
    Pratik
    Keymaster

    Hi Karen,

    In the page you have JetPack Gallery installed so it is taking effect. To achieve what you want, try adding the images separately and link them to the external page instead of adding a gallery. Or, you can try other gallery plugins in WordPress.org Plugins Repo.

    Regards,
    Pratik

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘hyphenation image slider contact detail’ is closed to new replies.