Forum Replies Created

Viewing 20 posts - 1,861 through 1,880 (of 2,006 total)
  • Author
    Posts
  • in reply to: Primary Menu bar Colour #82710
    Pratik
    Member

    hi @andrewf90,

    By solid colored bar, do you want to move the menu at the bottom of the header, or do you want another solid bar(leaving the menu in its place) or do you want a solid color bar between the header and page(in the small gap)?

    Regards,
    Pratik

    in reply to: Grey Padding #82709
    Pratik
    Member

    Hi @andrewf90,
    I am sorry but I cannot find the grey padding around the pages. Can you add a screenshot and point me to where the grey padding is?

    Regards,
    Pratik

    in reply to: Removing posts date in Google SERPs #82708
    Pratik
    Member

    HI @Masac,
    Thank you for removing the code. Now to remove those entry data completely, add following code in your child theme’s functions.php.

    
    /**
     * Override Parent themes header meta to show nothing
     */
    function catcheverest_header_meta() {
    	return;
    }
    
    /**
     * Override Parent themes footer meta to show nothing
     */
    function catcheverest_footer_meta() {
    	return;
    }
    

    Now, what these functions will do is override the parent themes functions that return meta data to show no data.

    Let me know if this works out or not.

    About the Wider Content of Homepage Headline and Footer, it is because of Easy Bootstrap Shortcodes Plugin. Try deactivating this plugin. The issue will go away.

    Let me know how everything goes.

    Regards,
    Pratik

    in reply to: H1 #82702
    Pratik
    Member

    Hi @lehii17,
    The <h1> tag is in file content-page.php line 13.

    If you want to make modifications, please use a child theme. Details for Child theme is here.

    If you edit them in theme files, changes will be lost on theme update.

    Regards,
    Pratik

    in reply to: Font size #82658
    Pratik
    Member

    Ok got it, add following code to change slider color:

    
    #main-slider .entry-title span {
       color: #ff0000;
    }
    

    Currently, I have changed the color to red using hex value. Just find the hex value of the color you need and replace #ff0000 with your color.

    in reply to: H1 #82657
    Pratik
    Member

    ok, so by changed, what do you want to change it to? please give a bit more details.

    in reply to: Font size #82652
    Pratik
    Member

    Hi @Cheryl,

    By this, which one do you mean? Main Site Title, or Slider title?
    `

    in reply to: Font size #82649
    Pratik
    Member

    hi @Cheryl,

    I got it now. the slider has title rather than content. Please use following CSS:

    
    #main-slider .entry-title {
       font-family: “Palatino Linotype”,”Book Antiqua”,Palatino,serif;
       font-size: 20px;
    }
    
    #site-title {
       font-size: 55px;
    }
    
    #site-description {
       font-size: 20px;
    }
    
    #hgroup {
       padding-top: 10px;
    }
    
    #hgroup-wrap {
       padding-bottom: 10px;
    }
    

    Hope this works, let me know if otherwise.

    Regards,
    Pratik

    in reply to: Featured Content Subheadline Text font size #82647
    Pratik
    Member

    hi @troyjensen,
    I am glad everything worked out. If you liked our theme and support, please leave us a review at https://wordpress.org/support/view/theme-reviews/adventurous

    Regards,
    Pratik

    in reply to: Font size #82646
    Pratik
    Member

    Hi @Cheryl,
    For Palatino font, add in your css as follows:

    
    #main-slider .entry-content {
        font-family: "Palatino Linotype","Book Antiqua",Palatino,serif;
        font-size: 20px;
    }
    

    Notice the font-size: 20px, increase or decrease to change its size as per your need.

    For Tagline, add following CSS,

    
    #site-description {
       font-size: 30px;
    }
    

    Notice the font-size: 30px, increase or decrease to change its size as per your need.

    To reduce the overall size of the header( make it narrower ).

    
    #hgroup {
        padding-top: 10px;
    }
    #hgroup-wrap {
        padding-bottom: 10px;
    }
    

    Notice the 10px in both conditions. Increase or decrease them both as per your need.

    Let me know how it works out.

    Regards,
    Pratik

    in reply to: Recommended shopping cart plug in for Catch Responsive Pro #82643
    Pratik
    Member

    You are welcome. Have a nice day.

    Regards,
    Pratik

    in reply to: Featured Header Image on above the site title #82642
    Pratik
    Member

    Hi @radeko,
    I am glad it worked out. If you liked our theme as support, please leave us a review at https://wordpress.org/support/view/theme-reviews/catch-responsive

    Regards,
    Pratik

    in reply to: size words widget #82641
    Pratik
    Member

    Hi @marcodimi,

    I have checked the issue and it is exactly how @mahesh has given it. The script should go to footer section. Once you add it there, it should work.

    in reply to: few problems that i face #82640
    Pratik
    Member

    Hi @raviuppal,
    It is working fine from the mobile devices that I have checked. Maybe there is cache issue in your mobile.

    To get the button and title below your ads, you will need html and CSS which falls outside out Theme Support Scope. You will need to hire a customizer for that.

    Regards,
    Pratik

    in reply to: Mobile Menu Problems #82639
    Pratik
    Member

    Great you solved it yourself. Let us know if you have any more issues.

    Regards,
    Pratik

    in reply to: Removing posts date in Google SERPs #82638
    Pratik
    Member

    hi @Masac,
    Sorry, but it has been difficult because of a different language. CAn you remove that CSS and let me know in which page the issue is?

    We need to build a child theme and make customization there to completely remove it.

    Regards,
    Pratik

    in reply to: removing post date and author #82636
    Pratik
    Member

    Hi @[email protected]

    Great everything worked out. It would be great if you could leave a review for this theme at: https://wordpress.org/support/view/theme-reviews/chicago#postform.

    Regards,
    Pratik

    in reply to: how to change now post #82590
    Pratik
    Member

    Hi @[email protected],

    To change background color, you can go to Appearance=> Customize=> Colors=> Background Color and select any color you like.

    Regards,
    Pratik

    in reply to: size words widget #82589
    Pratik
    Member

    hi @marcodimi,
    For “ARCHIVI” widget, use following code:

    
    /* For Archives Widget Heading */
    .widget_archive h3 {
       font-size: 26px;
    }
    
    /* For Archives Widget Content*/
    .widget_archive ul li {
        font-size: 15px;
    }
    

    Let me know how it works out.

    Regards,
    Pratik

    in reply to: few problems that i face #82588
    Pratik
    Member

    Hi @raviuppal,

    http://www.untoldreality.com/great-deals/ is currently giving me 404 page not found error. Can you check it?

    Regards,
    Pratik

Viewing 20 posts - 1,861 through 1,880 (of 2,006 total)