Forum Replies Created

Viewing 20 posts - 4,121 through 4,140 (of 4,916 total)
  • Author
    Posts
  • in reply to: remove site title from header #87615
    Mahesh
    Participant

    @shawzepe: For that you can use the following CSS instead:

    #site-header .site-title {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Menu effects #87611
    Mahesh
    Participant

    @riccrom123: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Center Logo and Title + Subtitle #87610
    Mahesh
    Participant

    @ilka07: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: hide title #87609
    Mahesh
    Participant

    @katonov: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Customize sidebar widget recent posts #87605
    Mahesh
    Participant

    @micha: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    .widget img.rpwe-thumb {
        border: none !important;
    }
    
    .post-22.page #gallery-2 img, 
    .post-26.page #gallery-2 img,
    .post-26.page #gallery-4 img {
        border: none;
    }

    Regards,
    Mahesh

    in reply to: Slider Head Error #87600
    Mahesh
    Participant

    @ericmuc: Same here, not occurring in mine either. Please use the following CSS:

    @media screen and (min-width: 767px) {
        #main-slider .entry-container {
            width: 350px;
        }
    }

    Hope this helps.

    Regards,
    Mahesh

    in reply to: Help making content font size slightly smaller #87594
    Mahesh
    Participant

    @loudmind: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    .entry-content {
        font-size: 15px;
    }

    Note: Please adjust the font-size as you required. (Default is 16px)

    Regards,
    Mahesh

    in reply to: remove site title from header #87593
    Mahesh
    Participant

    @shawzepe: Do you mean to remove Site Title and Title Tagline from header? If yes, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #site-header {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Hiding Masthead to Breadcrumb per page #87592
    Mahesh
    Participant

    @calsurance: In which page do you want this, can you please post the page url.

    Regards,
    Mahesh

    in reply to: How to designate image in Featured Image Slider #87591
    Mahesh
    Participant

    @smartie_pants: Yes it is possible. For this please see the steps in the theme instruction in below link (How to enable Featured Image Slider?)
    https://catchthemes.com/theme-instructions/chicago-pro/#enable-featured-image-slider.
    Note: As you select Featured Image Slider in Slider Type, select the images you want to display in slider in Featured Slide# Image
    Let me know if any trouble.

    Regards,
    Mahesh

    in reply to: Slider Head Error #87590
    Mahesh
    Participant

    @ericmuc: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    @media screen and (max-width: 767px) and (min-width: 481px) {
        #main-slider .entry-container {
            width: 50%;
        }
    }

    Regards,
    Mahesh

    in reply to: facebook in featured post in home page #87589
    Mahesh
    Participant

    @isabella: For that, you’ll need to create child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php, find and add the code from the following link. Then you’ll be able to add shortcode to display facebook page plugin in any one of content section of Featured Content.
    http://bit.ly/1RNkOT8

    Regards,
    Mahesh

    in reply to: Menu effects #87588
    Mahesh
    Participant

    @riccrom123: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #header-menu ul.menu li {
        border-bottom: thick solid #31246e;
    }
    
    #header-menu ul.menu li:hover a {
        color: #444444;
    }
    
    #header-menu ul.menu ul li {
        border-bottom: thick solid #f9f9f9;
    }
    
    #header-menu ul.menu ul, .sidebar-top .widget_nav_menu ul.menu ul {
        top: 2.7em;
    }
    
    #header-menu ul.menu ul a, .sidebar-top .widget_nav_menu ul.menu ul a {
    	width: 185px;
    }

    Regards,
    Mahesh

    in reply to: Customize sidebar widget recent posts #87587
    Mahesh
    Participant

    @micha: This is not possible with Custom CSS. You’ll need to create a Custom Widget area. I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Remove search bar #87586
    Mahesh
    Participant

    @shawzepe: Here is a Custom CSS for removing it from the site, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #fixed-header #menu-home li:not(.menu-item) {
        display: none;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Slider not working (jQuery Conflict?) #87585
    Mahesh
    Participant

    @bsmitty358gmail-com: Checked your site again and noticed that you have a custom script “BudgetBadge” (flyout in the top right) in your site and is enqueued before main jquery library which may have caused the issue. Please enqueue it after enqueing the main jquery library.
    Hope this helps.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: clean box pro install problem #87584
    Mahesh
    Participant

    @yourmarriagemaven: Its strange that the zip file was automatically uncompressed while downloading in your browser. Normally, it should have only downloaded the zip file. Glad to know you re-compressed it again and got it installed. Have a nice day!

    Regards,
    Mahesh

    in reply to: Centre Feature Content Text – Catch Everest FREE Theme #87583
    Mahesh
    Participant

    @adunning: Yes that can be done, just create a text widget in the footer widget area and copy the code for subscription into it and it will work.
    And for the color of sub-pages on the menu, add the following CSS:

    #header-menu ul.menu ul a {
        color: #f8d342;
    }
    #header-menu ul.menu li:hover a, #header-menu ul.menu ul li:hover a {
        background-color: #000000;
    }

    Regards,
    Mahesh

    in reply to: Center Logo and Title + Subtitle #87535
    Mahesh
    Participant

    @ilka07: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #header-left, #site-logo, #hgroup {
        display: block;
        float: none;
        text-align: center;
        padding: 0;
    }
    
    #hgroup-wrap img {
        display: inline-block;
    }
    
    #hgroup-wrap {
        padding-bottom: 20px;
    }

    Let me know if any trouble.

    Regards,
    Mahesh

    in reply to: Centre Feature Content Text – Catch Everest FREE Theme #87534
    Mahesh
    Participant

    @adunning: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
    1. Center the text under my featured content images on the home page

    #featured-post article .entry-title {
        text-align: center;
    }

    2. Change the color of the “Catch Themes” text-link in the footer, including the hover color

    #site-generator .powered .theme-author a, 
    #site-generator .powered .theme-author a:hover {
    	color: #f8d342;
    }

    3. I don’t quite get what you mean, can you please clarify more.

    Regards,
    Mahesh

Viewing 20 posts - 4,121 through 4,140 (of 4,916 total)