Forum Replies Created

Viewing 20 posts - 701 through 720 (of 2,016 total)
  • Author
    Posts
  • in reply to: Page doesn't stay fixed on mobiles #110051
    Pratik
    Participant

    Hi @voodoochill,

    Can you maybe share a screenshot via google drive, dropbox or any other image sharing media? I cannot find the issue on the devices I tried.

    Regards,
    Pratik

    in reply to: Want to move the top menu below the header area #110050
    Pratik
    Participant

    Hi @shahid864,

    It is not possible with simple coding and CSS. Please hire a customizer for this feature.

    Regards,
    Pratik

    in reply to: Change title font spacing #110049
    Pratik
    Participant

    Thank you for the appreciation. have a nice day 🙂

    in reply to: Helena header content and button not responsive #110048
    Pratik
    Participant

    Hi @sschmeer,

    Glad it worked out. If you liked our theme and support, please help us by leaving a review at https://wordpress.org/support/theme/helena/reviews/.

    Regards,
    Pratik

    in reply to: How to change font on primary top menu #110047
    Pratik
    Participant

    Hi @F,

    You are welcome 🙂 .

    Regards,
    Pratik

    in reply to: Featured Content Link Hover Color #110046
    Pratik
    Participant

    Hi @kriskyria,

    First thing, you are using free the,e and have seem to remove our credit link. Although there is no rule against doing that, it would be great if you could support us by giving us the credit link.

    Apart from that, I will answer your question as follows:
    For featured content hover color, use following code in Appearance=> Customize=> Additional CSS box::

    
    #featured-content .entry-title a:hover, #featured-content .entry-title a:focus {
        color: #a6a6a6;
    }
    

    I will have to say that this feature is readily available in Pro version where you can choose from colors list.

    For WooCommerce, you will need to upgrade to Pro version. Only pro version of the theme is WooCommerce Ready.

    Finally a quick note, it is not recommended to make changes to php files. Please use child theme if you want to make modifications. Main reason for this is all your changes will be lost when you update the theme. For child theme instructions, see: https://catchthemes.com/blog/create-child-theme-wordpress/

    Regards,
    Pratik

    in reply to: Make image full-width #110044
    Pratik
    Participant

    Hi @laura,

    When you add above css, the content on mobile phones might liik too close to the screen. So try following code if mobile view is not to your liking.

    
    @media screen and (min-width: 1450px) {
        #primary {
            padding-left: 0;
            padding-right: 0;
        }
    }
    

    What this does is only add the CSS if screens width size is greater than 1450 px, i.e your slider image width.

    If you want it on smaller screens, try reducing 1450 to 1200 or 900 and so on.

    Regards,
    Pratik

    in reply to: Make image full-width #110043
    Pratik
    Participant

    Hi @Laura,

    Add following code:

    
    #primary {
        padding-left: 0;
        padding-right: 0;
    }
    

    Please note that this will also increase your texts above slider same width as slider.

    Regards,
    Pratik

    in reply to: Add the new field in customizer featured slider #110042
    Pratik
    Participant

    Hi @shahid864,

    For that, you will need to do some custom work. Please hire a customizer for that custom work.

    Regards,
    Pratik

    in reply to: Header image need fill screen width #110041
    Pratik
    Participant

    Hi @dev.kasam,

    Glad it worked out 🙂

    Regards,
    Pratik

    in reply to: WPML and Clean business problems #110040
    Pratik
    Participant

    Hi @Hans-Rudolf,

    Sometimes, the one font does not have all the characters required for languages other than english. The font maker decides which ones are the languages he will support. I think this is the case in here too. If a font does not support language, it will revert back to another font that supports the language. That is why, different fonts on different versions of language on a site. I hope I explained it properly. Let me know if you have difficulty understanding what I wrote.

    Regards,
    Pratik

    in reply to: Make space between image and logo smaller #110039
    Pratik
    Participant

    Hi @wouwonline,

    For Table bottom border, use:

    
    .entry-content table {
        border-bottom: none;
    }
    

    For content h2, use:

    
    .entry-content h2 {
        color: #f2f2f2;
    }
    

    For Image border, use:

    
    #content img { border:none; }
    

    Let me know if I got them this time 🙂

    Regard,
    Pratik

    in reply to: Increase size of title font on home page feature slider #110038
    Pratik
    Participant

    Hi @F,

    The above code will change the sizes of Featured Content Title, Slider Title a,d all other titles. On reading your request again, it seems you only want to increase size. For that, use following code:

    Please increase the size to see cgange. E.g:

    
    @media screen and (min-width: 500px) { 
        #feature-slider .entry-title { font-size: 50px; }
    }
    

    It will increase size of Text Top 8 Mountain gateway on screens with viewport greater than 500px. Please increase/decrease 52px to suite your need.

    Let me know if this is what you wanted.

    Regards,
    Pratik

    in reply to: Add the new field in customizer featured slider #109970
    Pratik
    Participant

    Hi @shahid864,

    I cannot understand what you mean. Can you explain a bit more?

    Regards,
    Pratik

    in reply to: Make space between image and logo smaller #109967
    Pratik
    Participant

    Hi @wouwonline,

    It looks like you have nested multiple table(table inside table), thats why it looks wierd.

    Try following code:

    
    .entry-content td,
    .comment-content td {
        border: 0;
    }
    

    Regards,
    Pratik

    in reply to: Homepage Featured Content text links – new post #109966
    Pratik
    Participant

    Hi Jean,

    I get it now. It looks like there is a bug in the theme. The Page/Post content do not give links. I will notify our tech team and let you know the results.

    Regards,
    Pratik

    in reply to: Homepage Featured Content text links – new post #109963
    Pratik
    Participant

    Hi @Jean,
    Which featured content type are you using?

    in reply to: Make space between image and logo smaller #109962
    Pratik
    Participant

    Hi @wouwonline,

    To remove image border, use following code:

    
    #slider img {
        width: 100%;
    }
    

    About h2, can you let me know which h2 are you talking about. I need specific information as something else is overriding my given CSS.

    Regards,
    Pratik

    in reply to: changing excerpt mode #109960
    Pratik
    Participant

    Hi @INFOYED,

    So you were talking about Featured Content. I was assuming you were talking about blog page.

    Goto Appearance=> Customize=> Theme Options=> Excerpt/More Tag settings and reduce the Excerpt length(words).

    This will bring read more link.

    Regards,
    Pratik

    in reply to: changing excerpt mode #109947
    Pratik
    Participant

    Can you post in your site url?

Viewing 20 posts - 701 through 720 (of 2,016 total)