Home Forums Pro Themes Blog Diary Pro Front page

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #142986
    Kristjan Brozovič
    Participant

    Hello! First of all it’s really good theme, congrats! But still I would need some help.

    1. Is it possible to modify search field on your own? Shape, whats written inside and so…
    2. Is it possible to connect those categories with categories made in WooCommerce? And how can I do it?
    3. How can I remove name and date from slider? Is it possible to make the photo on the slider clickable?

    Thank you!

    #143023
    Psink
    Keymaster

    Hello Kristjan

    Yes, it is possible to modify the search field by adding Additional CSS. For text inside the search form ( Placeholder ), we will add the option in the theme to change the text placeholder in the next update. Please send us a brief about the shape of the search form, we will provide you a CSS to achieve that shape

    No, it is not possible – Product category and post category are wholly different things

    Yes, you can remove author name and date from the slider, and also it is possible to make the slider image clickable

    Please Add this CSS in the theme to hide name and date form slider

    
    #featured-slider .entry-meta .byline, 
    #featured-slider .entry-meta .posted-on{
       display: none;
    }
    

    To add above css in the theme, Go To Admin Panel >> Appearance >> Customize >> Additional CSS, there paste the above CSS and then published

    Regards,
    Psink

    #143135
    Kristjan Brozovič
    Participant

    1. Search field: it has to be a bit bigger so people will see it easier and a bit round (border-radius) so it will be similar to other things on the website. Inside the seach field it should be color (if possible) to stand out a bit in comparison to menu. If possible, when you put cursor on the field it should change (:hover), probably “opacity” will do.

    2. I forgot to ask last time… How can I remove author and date from “featured slider” and “single column posts” too?

    3. By default header image is darkened. Is it possible to have it as it is, without that effect, and how can I change this?

    4. Do you have any idea how could I show products uploaded on WooCommerce on “featured slider”, “latest posts” and “must read posts” without making new page, post or category (as are the options now)?

    5. On the front page now I have only options to have one “slider”, one “featured posts”, one “must read posts” (I mean the whole section not the items showed in those fields). Is it possible and how can I change this, to have more of them, let’s say one “slider”, two “must read posts” and so on?

    I know it is a lot of questions for you to answer and therefore thank you for your help and patience!

    #143562
    Kristjan Brozovič
    Participant

    Hi there! Sorry for disturbing but I would be really grateful for your answer. Thank you!

    #143574
    Psink
    Keymaster

    Hello Keistjan

    For Query no. 1 & 3 – Add this CSS in the Additional CSS

    
    @media screen and (min-width: 1024px){
        .main-navigation form.search-form {
            min-width: 400px;
           
        }
        .main-navigation form.search-form input{
            border-radius: 10px;
       }
       #header-banner-image .overlay{
            opacity: 0;
       }
    
    }
    
    

    Adjust border radius and width as per your need – just change value in above CSS

    For query no. 2 – Add this CSS in the Additional Css

    
    #featured-slider .entry-meta .byline, 
    #featured-slider .entry-meta .posted-on,
    .archive-blog-wrapper .entry-meta .byline,
    .archive-blog-wrapper .entry-meta .posted-on{
       display: none;
    }
    
    

    For query no. 4, 5 – it is not possible to do that in the theme

    Have a great Day

    Regards
    Psink

    #172144
    jswilson9845
    Participant

    Thank you, Really Helpful.

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.