Forum Replies Created

Viewing 20 posts - 4,281 through 4,300 (of 4,916 total)
  • Author
    Posts
  • in reply to: Mobile Table Responsive Text #86294
    Mahesh
    Participant

    Hi @husker,

    For the above changes:
    1. Edit the page with that text, go to content text tab and find the line
    <p>Scroll left and right to view all</p>
    And replace it with the following
    <p class="mobile-display">Scroll left and right to view all</p>
    Then click update.

    2. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS”

    .mobile-display {
        display: none;
    }
      
    @media screen and (max-width: 768px) {
        .mobile-display {
            display: block;
        }
    }

    Note: Follow step for all pages with “Scroll left and right to view all” text

    Regards,
    Mahesh

    in reply to: Home page only 2°footer area #86293
    Mahesh
    Participant

    Hi @isabella,

    Thank you for using Catch Everest Pro.
    I recommend you to use Widget Visibility control plugins such as Jetpack’s Widget Visibility or Widget Visibility plugin etc. Or you may use any plugins from WordPress.org plugins repo with similar feature. And then use the widget to display your desired image in home page only.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @hugodebe,

    Glad you made it work. And the above one the the great step by step tutorial for creating .po, .mo files for translation.
    And yes the .po and .mo files are case sensitive.
    Thank you for the above.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Thumbnails und Pictures in one Post #86290
    Mahesh
    Participant

    Hi @halbfett,

    Sorry, I didn’t quite get what you meant, please clarify more. Please post in your site url.

    Regards,
    Mahesh

    in reply to: 2 questions: Update question, How to do it-question #86289
    Mahesh
    Participant

    Hi @knudkp,

    1. You can check theme’s change log. Theme folder/changelog.txt. And you can check the theme’s version in “Dashboard=> Appearance=> Themes” Theme Details.

    2. We do have how to do video for Catch Updater. Please check the link below.
    https://www.youtube.com/watch?v=W95SuabDZi8

    Regards,
    Mahesh

    in reply to: Social widget #86287
    Mahesh
    Participant

    Hi @micha,

    I recommend you to use the Catch Web Tool’s Social Icons module. It includes the features you desired. The latest update is about to release soon. Please wait for the update. Thank you for your patience.

    Regards,
    Mahesh

    in reply to: A question about excerpt tag #86286
    Mahesh
    Participant

    Hi @borakula,

    By default, full content is displayed in post list. You have to change the setting for displaying excerpt instead of full content. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options” and in select Excerpt/Blog Display from Full Content Display dropdown. Click Save and check the front end.

    Regards,
    Mahesh

    in reply to: Catchbase Pro 3.3 update not installing #86283
    Mahesh
    Participant

    Hi @knudkp,

    For updating theme please follow the instruction in the theme-instruction in the link below:
    https://catchthemes.com/theme-instructions/catch-base-pro/#updating
    I recommend you to use the Catch Updater plugin.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Catchbase Pro 3.3 update not installing #86282
    Mahesh
    Participant

    Hi @marga,

    Glad it helped you. Thank you for your appreciation.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Change the colour of the category tags. #86279
    Mahesh
    Participant

    Hi @blogtunes,

    Thank you for your appreciation.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Radio button or check box #86278
    Mahesh
    Participant

    Hi @micha,

    Yes indeed. 🙂
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Mobile responsive problem #86277
    Mahesh
    Participant

    Hi @dmp-lakshitha,

    But I didn’t really do anything. May be the issue was due to cache.
    Anyway, thank you for your appreciation. 🙂
    Have a nice day!

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @micha,

    Yes, it is Jetpack’s commenting feature that you are using. First after the page loads, only the text area is visible and as soon as you click inside the comment box, other form inputs slides down and the white space shrinks.

    Regards,
    Mahesh

    in reply to: Change the colour of the category tags. #86224
    Mahesh
    Participant

    Hi @blogtunes,

    Thanks for the url.
    Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    .cat-links a, .tags-links a {
        background-color: #212121;
    }

    Regards,
    Mahesh

    in reply to: Radio button or check box #86223
    Mahesh
    Participant

    Hi @micha,

    Okay to make you clear, lets take an example:
    You have two inputs, say color and fruits:
    Colors you like
    1. Red
    2. Blue
    3. Green
    4. Black

    Fruits you like
    1. Orange
    2. Banana
    3. Apple
    4. Grape

    Then we would have used the following HTML code

    <input type="checkbox name="color" value="red" />
    <input type="checkbox name="color" value="blue" />...
    
    <input type="checkbox name="fruit" value="orange" />
    <input type="checkbox name="fruit" value="banana" />..

    Name attribute will make multiple options for one option. i.e. it make sure that red, green, blue and yellow are options for color.
    Similarly, value is to make sure which options are selected, if no value is given, how do we know which options were selected for the inputs.
    This is very important while working with forms.
    Same goes with radio buttons.

    Hope you understand.

    Regards,
    Mahesh

    in reply to: Create a table #86220
    Mahesh
    Participant

    Hi @micha,

    For that you’ll need to use class or id, if you want to set rule for multiple element, use class otherwise just for one element, use id

    <table class="customized-table">
    	<tr>
    		<td class="wt-50">Column One</td>
    		<td class="wt-25">Column Two</td>
    		<td class="wt-25">Column Three</td>
    	</tr>
    </table>

    And use following CSS:

    .entry-content table.customized-table, .entry-content table.customized-table td {
        border: none;
    }
    
    table.customized-table td.wt-50 {
        width: 50%;
    }
    
    table.customized-table td.wt-25 {
        width: 25%;
    }

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @micha,

    This is because of the jetpack’s iframe in comment section. It has static fixed height of 430px and cannot be overridden with custom css.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @micha,

    This can be done with Custom CSS, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    footer.entry-meta,  nav#nav-below {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Change the colour of the category tags. #86210
    Mahesh
    Participant

    Hi @blogtunes,

    Thank you for your appreciation.
    Please post in your site url.

    Regards,
    Mahesh

    in reply to: Create a table #86209
    Mahesh
    Participant

    Hi @micha,

    For that you can write html for table in content’s text tab as below:

    <table>
    	<tr>
    		<td>Column One</td>
    		<td>Column Two</td>
    		<td>Column Three</td>
    	</tr>
    </table>

    And for no border, add the Custom CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:

    .entry-content table, .entry-content td {
        border: none;
    }

    Regards,
    Mahesh

Viewing 20 posts - 4,281 through 4,300 (of 4,916 total)