Forum Replies Created

Viewing 20 posts - 3,761 through 3,780 (of 4,908 total)
  • Author
    Posts
  • Mahesh
    Participant

    @mikebizbuildersofnh-com: Thank you for using Catch Everest Pro. Above code won’t work in Catch Everst Pro since different structure. In Catch Everest Pro, this cannot be done with simple CSS, I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Align header image top-right, above menu #90615
    Mahesh
    Participant

    @lordinvestor: Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Can No Longer Save Posts/Pages #90605
    Mahesh
    Participant

    @benowchiro: Please check the reply on the other post. As I’ve replied on the other thread, I’ll skip this one. Please do no make two posts for same problem.

    Regards,
    Mahesh

    in reply to: Blank screen appearing on Customize screen #90598
    Mahesh
    Participant

    @dontheideaguy: We’ll have to check in your server for the issue. 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

    in reply to: menu and submenu of Pro version not transparent #90594
    Mahesh
    Participant

    @mupa: Buggy color options? Are you having any trouble? Please clarify.

    Regards,
    Mahesh

    in reply to: Featured Content is not showing #90593
    Mahesh
    Participant

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

    Regards,
    Mahesh

    in reply to: footer padding #90591
    Mahesh
    Participant

    @asumi: Add the following CSS in your Custom CSS box:

    #text-24.widget_text .widget-wrap {
        margin-left: 135px;
    }

    Regards,
    Mahesh

    in reply to: Few questions regarding CSS and HTML #90590
    Mahesh
    Participant

    @robertl: It is because you’ve nothing to display in right section of promotion headline. And by default the max-width of left-section is 80%. For full-with promotion headline, use the following CSS:

    #promotion-message .left {
        max-width: none;
    }

    Regards,
    Mahesh

    in reply to: Few questions regarding CSS and HTML #90545
    Mahesh
    Participant

    @robertl:
    1. CSS code to make the titles/headings ONLY on the home page #E60000 colour:
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .home #promotion-message h2, 
    .home #featured-heading, 
    .home #featured-content .entry-title {
        color: #E60000;
    }

    2. Transparent background on Complaints and Disputes menu item:
    Add the following CSS and it will resolve the issue.

    .catchresponsive-nav-menu .sub-menu a {
        background-color: #fff;
    }

    3. Since you content is one whole block and you are pointing the break in the middle of the content, I am afraid, this is not possible.

    Regards,
    Mahesh

    in reply to: Problem after updating with header image #90543
    Mahesh
    Participant

    @sergio-colagrossigmail-com: Do you have any plugins installed, try disabling plugins and check if the customizer is working. And please do check if the customizer is running in other theme (WordPress Core Themes).
    Let me know further.

    Regards,
    Mahesh

    in reply to: New Social Icons Please #90537
    Mahesh
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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

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