Forum Replies Created

Viewing 20 posts - 3,761 through 3,780 (of 4,888 total)
  • Author
    Posts
  • in reply to: New Social Icons Please #90537
    Mahesh
    Member

    @beer_krop: For adding custom social icons, you’ll need to create child theme and do some customizations. You can find more details on creating child theme HERE. I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Problem after updating with header image #90531
    Mahesh
    Member

    @sergio-colagrossigmail-com: Go to Dashboard=> Appearance=> Customize=> Header Image then click on Add new image and select you desired image. Then click save. You can also adjust where to display the Header image with Header Image Location

    Regards,
    Mahesh

    Mahesh
    Member

    @stefanhoesli: Do you mean to keep it transparent or not transparent? I am confused. The above code will make the header background color solid white. Please post in your site url.

    Regards,
    Mahesh

    in reply to: Featured Content- no picture, only title and excerpt #90521
    Mahesh
    Member

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

    #featured-content article.hentry > a {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Logo on Mobile/Tablet doesn't scale correctly #90518
    Mahesh
    Member

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

    @media screen and (max-width: 990px) {
        #site-logo img {
            max-height: none;
        }
    }

    Note: In your custom CSS, you are missing a } for @media screen and (min-width: 960px) { please put a closing brace before using the given code.

    Regards,
    Mahesh

    Mahesh
    Member

    @shop43: Catch Box Pro has only one/two column layouts option unlike Catch Evolution Pro or Catch Flames Pro which has one/two/three column layouts. And if you want to have 3 column layouts, I recommend you to use Catch Evolution Pro or Catch Flames Pro. If you want to have three column layout in Catch Box Pro itself, you’ll need to hire a customizer.

    Regards,
    Mahesh

    in reply to: footer padding #90509
    Mahesh
    Member

    @asumi: Thank you for your consideration.
    Sorry but I don’t quite get what your problem really is. Can you please clarify more? If possible, please explain with an image as an example.

    Regards,
    Mahesh

    in reply to: Blank screen appearing on Customize screen #90507
    Mahesh
    Member

    @dontheideaguy: Customizer in Jomsom Theme is working fine on our server with latest version of WordPress. Are you using any plugins? If yes try disabling it and check if the issue resolves. Do you get any error messages in the customizer? Also try installing the theme from WordPress repo directly from Dashboard=> Appearance=> Themes=> Add New.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Featured content text length #90506
    Mahesh
    Member

    @cassyput: Yes, you can limit the number of words in featured content. Go to Dashboard=> Appearance=> Customize=> Featured Content, and make sure Show Excerpt is selected in Display Content option. Then go to Dashboard=> Appearance=> Customize=> Theme Option=> Excerpt Options and set number of words you want to limit to in Excerpt Length (words). And for changing Read More text, replace the text in Read More Text with your desired text.

    Regards,
    Mahesh

    in reply to: clean journal mobile version problem #90499
    Mahesh
    Member

    @asumi: Yes, this can be done through child theme. Find the function clean_journal_footer_content_content and make a similar function with your custom footer text. Then unhook the default footer with following code:
    remove_action( 'clean_journal_footer', 'clean_journal_footer_content', 100 );
    and add the new footer function with following code:
    add_action( 'clean_journal_footer', 'your_custom_footer_function', 100 );

    Regards,
    Mahesh

    in reply to: Featured Content is not showing #90498
    Mahesh
    Member

    @kelsantana: Please check the image in the link below. You have to put the post ids in the section as shown in the image. Find this section in Dashboard=> Appearance=> Customize=> Featured Content. Make sure that Featured Post Content is selected in Select Content Type
    http://goo.gl/3XtdSL
    Let me know if any problem.

    Regards,
    Mahesh

    Mahesh
    Member

    @stefanhoesli: For that, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #masthead {
        background-color: #fff;
    }

    Let me know if any trouble.

    Regards,
    Mahesh

    in reply to: Responsive mobile menu not working #90472
    Mahesh
    Member

    @robertl: It is because in mobile devices, the description is hidden and only post’s title are shown. But in one of the post in the slider, you have empty title so there was nothing to display. But on the other one, you can see the title 2020 Vision.

    Regards,
    Mahesh

    in reply to: Responsive CSS not working in child theme #90471
    Mahesh
    Member

    @izbiz1: Yes sure, done.

    Regards,
    Mahesh

    in reply to: Responsive CSS not working in child theme #90468
    Mahesh
    Member

    @izbiz1: You have made two div’s position absolute and width fixed to 1190px, you’ll need to use media queries to make it responsive. You can find some info on using media queries in the link below:
    http://www.w3schools.com/css/css_rwd_mediaqueries.asp
    If you do not know much about CSS I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Several question regarding CSS #90462
    Mahesh
    Member

    @bastain: In you Custom CSS box, replace the code:

    .sidebar_social_links li {
        float: left;
        margin-right: 15px;
    }

    with following:

    .sidebar_social_links li {
        display: inline-block;
        margin-right: 15px;
    }

    Regards,
    Mahesh

    in reply to: Responsive CSS not working in child theme #90454
    Mahesh
    Member

    izbiz1: You have made some customization to the theme and add the some div too.
    .soon-wrap and .mlhm-heart-wrap this is creating issue in responsive design.

    Regards,
    Mahesh

    in reply to: Featured Post Slider Disappeared Since Theme Update #90453
    Mahesh
    Member

    @dt2791: Glad that your issue is fixed.

    @rmcq-web
    : We have released the update and is now available at WordPress.org repo, please update.

    Regards,
    Mahesh

    in reply to: Change menu font #90452
    Mahesh
    Member

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

    @font-face {
        font-family: "Amatic SC";
        font-style: normal;
        font-weight: 400;
        src: local("Amatic SC"), local("AmaticSC-Regular"), url("https://fonts.gstatic.com/s/amaticsc/v8/6UByihrsVPWtZ99tNMIgMBJtnKITppOI_IvcXXDNrsc.woff2") format("woff2");
        unicode-range: U+100-24F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
    }
    #header-menu ul.menu a {
          font-family: 'Amatic SC', sans-serif;
    }

    Regards,
    Mahesh

    in reply to: Featured Post Slider Disappeared Since Theme Update #90446
    Mahesh
    Member

    @susannec: Please fill up this form in the link below with your issue and details and let me know when you’ve submitted the form and our team will check the issue.
    https://catchthemes.com/blog/customizer-not-working-wordpress-update/

    Regards,
    Mahesh

Viewing 20 posts - 3,761 through 3,780 (of 4,888 total)