Forum Replies Created

Viewing 20 posts - 2,921 through 2,940 (of 4,888 total)
  • Author
    Posts
  • in reply to: Questions regarding thumbnails #98151
    Mahesh
    Member

    imboliboli: You have an error in your Custom CSS. You have a missing } just before the following code:

    #feature-slider, 
    #feature-slider .wrapper, 
    #feature-slider .cycle-slideshow {
        margin: 0 auto;
        width: 80%;
    }

    Please correct it.

    Regards,
    Mahesh

    Mahesh
    Member

    @bashstreet: For this you can achieve it with Custom Featured Content where you put the post content in the first column and link to the very post. And then content of the pages in the remaining two with its link.
    If you want to do it as mentioned above, I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Questions regarding thumbnails #98147
    Mahesh
    Member

    @imboliboli: I checked your site, seems you haven’t enabled the Feature Content that’s why nothing is showing. Go to Dashboard=> Appearance=> Customize=> Featured Content=> Featured Content Options and select Homepage/Frontpage option in Enable Featured Content on dropdown Below Content option in Featured Content Position drop-down.

    For smaller slider, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following:

    #feature-slider, 
    #feature-slider .wrapper, 
    #feature-slider .cycle-slideshow {
        margin: 0 auto;
        width: 80%;
    }

    Hope this helps.

    Regards,
    Mahesh

    in reply to: Font size and alignment #98146
    Mahesh
    Member

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

    #featured-content .entry-title {
    	font-size: 20px;
    	text-align: center;
    }

    Note: Please adjust the font-size in the above code as per required.

    Regards,
    Mahesh

    in reply to: Featured Content Slider on home page #98145
    Mahesh
    Member

    @karlcurrentsnj-com: I checked your site and the Featured Slider seems to be working fine.
    To remove the date and comments on my posts, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS:

    #main .entry-meta {
        display: none;
    }

    Let me know further.

    Regards,
    Mahesh

    in reply to: Change blue accent color of hyperlinks / hover colors, etc. #98143
    Mahesh
    Member

    @phillycontemporary: The color options is built-in in Pro version. I recommend you to upgrade to Pro. But if you want it in Free version anyway, it can be done with Custom CSS. Go to Dashboard=> Apperance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    /* blue box behind the search bar icon on the top menu */
    .site-header .social-networks li .fa-search {
        background-color: #ffff00;
    }
    
    /* blue hover color on the ‘Read More’ button on the featured Image slider */
    #feature-slider .more:hover {
        background-color: #00a3e6;
        border-color: #00a3e6;
        color: #fff;
        text-decoration: none;
    }
    
    /* blue color of all hyperlinks in page/post text */
    a {
        color: #00a3e6;
    }
    
    /* color of the footer navigational menu item text */
    .footer-b .footer-nav a {
        color: #ff00ff;
    }

    Note: Please change the colors as desired.

    Regards,
    Mahesh

    in reply to: stop scrolling on header and main nav #98139
    Mahesh
    Member

    @hidemyage: We’ll contact you through email.

    Regards,
    Mahesh

    in reply to: Adjust Page Width No sidebar #98138
    Mahesh
    Member

    @obscurediamond: No Sidebar (Full Width) option is already built-in in the Pro version. I recommend you to upgrade to Pro. But if you want to make the main content area full-width or adjust as per desired, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #primary {
        width: 100%;
    }

    Regards,
    Mahesh

    in reply to: Is a logo with different URL possible? #98137
    Mahesh
    Member

    @olaf-boehmebissantz-de: Sorry, I guess this is not possible since the logo is a core functionality.

    Regards,
    Mahesh

    in reply to: Adding "Terms and conditions"link on the footer #98136
    Mahesh
    Member

    @monicavilas: I mean, for Catch Base Pro use Catch Base Pro Child Theme so there would be no confusion with the free version’s child theme.

    Regards,
    Mahesh

    in reply to: Formatting Slider title typography and position? #98135
    Mahesh
    Member

    @phillycontemporary: Do you mean to change the active white color? By default, the thumbs is using black overlay with 0.7 opacity and on hover it disappears.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Questions regarding thumbnails #98133
    Mahesh
    Member

    @imboliboli:
    1. Hide page content.
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .home #main {
        display: none;
    }

    2. Small slider
    Do you mean to decrease the height of the slider or the width? If you mean height, you can use image with least height as you desire.
    Let me know further.
    Note: This will hide page content in Home page only.

    Regards,
    Mahesh

    in reply to: HTML tag in Slider excerpt text #98132
    Mahesh
    Member

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

    Regards,
    Mahesh

    in reply to: Static Front page configured but not working #98131
    Mahesh
    Member

    @fmhboudreau: I just checked your site and seems the home page is now working fine. The site is not redirecting to http://www.cbida.org/index.html anymore. I think you’ve resolved your problem and you’ve also set the static front page.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Logo in alignment with menu #98068
    Mahesh
    Member

    @olaf-boehmebissantz-de: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Is a logo with different URL possible? #98067
    Mahesh
    Member

    @olaf-boehmebissantz-de: I checked your site, it seems that you have put the different link in the logo.

    Regards,
    Mahesh

    in reply to: content translation plugin #98066
    Mahesh
    Member

    @himynameisanton: Oh for that I recommend you to upgrade to Pro version. Pro version fully supports WPML and qtranslate plugins.
    So that you can use string like
    [:en]English Text[:de]Deutsch[:] which shows English Text selecting English language and Deutsch when German language is selected.

    Regards,
    Mahesh

    in reply to: Formatting Slider title typography and position? #98060
    Mahesh
    Member

    @phillycontemporary: Go to Dashbaord=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #feature-slider .thumbnail h2 {
        display: none;
    }
    
    #feature-slider .entry-title {
    	text-transform: none;
    	font-weight: bold;
    }
    
    #feature-slider .caption > .vcenter {
    	left: 10%;
    	margin: 0;
    }
    
    #feature-slider .caption,
    #feature-slider .entry-content {
    	text-align: left;
    }

    Regards,
    Mahesh

    in reply to: Adding Image to Site Title #98041
    Mahesh
    Member

    @db: For that, go to Dashboard=> Appearance=> Customize=> Site Identity and then choose a logo you desire. You can hide Site Title and Tagline by unchecking Display Site Title and Tagline option. But because of some bug in the theme, this is not working for now. It will be fixed in the next update. So please use custom CSS to hide the Site Title and Tagline for now.

    .site-title a, 
    .site-description { 
        position: absolute !important; 
        clip: rect(1px 1px 1px 1px); 
        clip: rect(1px, 1px, 1px, 1px); 
    }

    Regards,
    Mahesh

    in reply to: content translation plugin #98035
    Mahesh
    Member

    @himynameisanton: I tested the plugin with Catch Base theme on our sever and it the translation worked fine. What error do you get.
    Let me know further.

    Regards,
    Mahesh

Viewing 20 posts - 2,921 through 2,940 (of 4,888 total)