Forum Replies Created

Viewing 20 posts - 4,281 through 4,300 (of 4,903 total)
  • Author
    Posts
  • 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

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

    Hi @micha,

    The name and value attribute is to assign name and specific value for that input option.

    Regards,
    Mahesh

    in reply to: Mobile responsive problem #86186
    Mahesh
    Participant

    Hi @dmp-lakshitha,

    I just check your site in both the browser and mobile. And in both, the menu is working fine. Its right there below the header image. I also tested with mobile view in browser and it worked fine too.

    Regards,
    Mahesh

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

    Hi @fpilot,

    For theme updating theme please use the Catch Updater plugin or Catch Web Tool‘s Catch Updater module.
    You can find the tutorial video for how to use catch updater in the following link:
    https://www.youtube.com/watch?v=W95SuabDZi8

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Create a table #86180
    Mahesh
    Participant

    Hi @micha,

    I am a bit confused on your requirement.
    What do you mean by invisible columns? You mean table without border, just the content text… And do you mean to add it in the page content. Please clarify more if possible with a image.

    Regards,
    Mahesh

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

    Hi @micha,

    If you just want the checkbox and radio button (html), you can go to content text tab then add the following:

    <label>Checkbox</label>
    <input name="checkbox" type="checkbox" value="a" />A
    <input name="checkbox" type="checkbox" value="b" />B
    
    <label>Radio button</label>
    <input name="radio" type="radio" value="c" />C
    <input name="radio" type="radio" value="d" />D

    But html won’t transfer state or save value, it will only remain selected until you refresh the page.
    I you want to save and access value, you will have to use plugins eg: Contact Form 7.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @hugodebe,

    I recommend you to use other method than to change the theme’s core code for translation. You will need to create pt_BR.po and pt_BR.mo file from clean-box.pot. I downloaded the pt_BR.po file from the link you’ve provided and made it work as per the clean-box.pot file by copying the header in pt_BR.po file from clean-box.pot file. Then selected Brazilian language in Dashboard=> Settings=> Site Language, and all of the above strings is being translated to Brazilian. You can use poedit for editing .po files and .mo file will be automatically generated.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Move widget position #86168
    Mahesh
    Participant

    Hi @tatsujin,

    I thought you meant home slider. 🙂 Forget all of the code above that I’ve given.
    For the custom widget created earlier, you have to modify some codes in child themes. In your child theme’s functions.php, find the following line:
    add_action( 'simplecatch_child_before_content', 'simplecatch_child_homepage_slider_widget', 10 );
    then change it to the following:
    add_action( 'simplecatch_child_after_content', 'simplecatch_child_homepage_slider_widget', 10 );

    I assume, you have overridden the index.php and have this line just above the primary div’s closing.
    <?php do_action( 'simplecatch_child_after_content' ); ?>

    Regards,
    Mahesh

    in reply to: Add additional field to header #86166
    Mahesh
    Participant

    Hi @ogremhdw,

    Just checked your site and telephone and email address is being shown in both desktop and mobile devices normally. It seems to be working fine. Have you fixed it, or is it still not showing on yours?

    Regards,
    Mahesh

    in reply to: Customize landing page #86164
    Mahesh
    Participant

    Hi @micha,

    Okay, now I’m seeing the image. For form fields to stick to the right, add the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:

    .page-id-5384 .mc-field-group {
        max-width: none;
        width: 100%;
    }
    
    #mc_embed_signup .mc-field-group {
        width: 100%;
    }
    
    #mc_embed_signup {
        clear: none !important;
        float: left;
        width: 50%;
    }
    
    @media screen and (max-width: 480px) {
        #mc_embed_signup {
            float: none;
            width: 100%;
        }
    }

    Regards,
    Mahesh

    in reply to: Responsive mobile menu not working #86161
    Mahesh
    Participant

    Hi @uoft,

    Glad to know your issue has been fixed.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Leaderboard banner #86160
    Mahesh
    Participant

    Hi @bia,

    Yes, you can use widget instead of image in the header area, but you’ll need to create a child theme and do some coding (for adding and displaying widget). You can find more details on creating child theme HERE. If you are not much familiar with programming, I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Featured image problem #86159
    Mahesh
    Participant

    Hi @spacer,

    I’m glad to know your issue is fixed. Thank you for your appreciation.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Move widget position #86158
    Mahesh
    Participant

    Hi @tatsujin,

    I assume that you want the slider below main content and just above the footer. For that add the following code in your child theme’s functions.php:

    function simplecatch_child_slider_below_content() {
    	remove_action( 'simplecatch_after_headercontent', 'simplecatch_slider_display', 20 );
    	add_action( 'simplecatch_after_main_slider', 'simplecatch_slider_display', 10 );
    }
    
    add_action('init', 'simplecatch_child_slider_below_content');

    Then create footer.php file in your child theme’s folder and paste in the following codes.

    <?php
    /**
     * The template for displaying the footer.
     *
     * @package Catch Themes
     * @subpackage Simple_Catch_Pro
     * @since Simple Catch Pro 1.0
     */
    ?>
    
    </div> <!-- #main -->
    <div class="wrapper">
    <?php
    /**
     * simplecatch_after_main_slider hook
     */
    do_action( 'simplecatch_after_main_slider' );
    ?>
    </div>
    <?php
    /**
     * catchthemes_after_main hook
     */
    do_action( 'simplecatch_after_main' );
    ?>
    
    <footer id="colophon">
    
           <?php
           /**
             * simplecatch_footer hook
             *
             * @hooked simplecatch_footercontent - 15
             */
           do_action( 'simplecatch_footer' ); ?>
    
    </footer><!-- #colophon -->
    
    <?php
    /**
     * simplecatch_after hook
     *
     * @hooked simplecatch_scrollup - 15
     */
    do_action( 'simplecatch_after' );
    ?>
    
    <?php wp_footer(); ?>
    
    </body>
    </html>

    Let me know if any problem.

    Regards,
    Mahesh

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