Forum Replies Created
-
AuthorPosts
-
Mahesh
ParticipantMahesh
ParticipantMahesh
ParticipantHi @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,
MaheshFebruary 25, 2016 at 9:36 am in reply to: Remove categories, tags, leave reply, previous and next post underneath post #86276Mahesh
ParticipantHi @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,
MaheshMahesh
ParticipantHi @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,
MaheshMahesh
ParticipantHi @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. BlackFruits you like
1. Orange
2. Banana
3. Apple
4. GrapeThen 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,
MaheshMahesh
ParticipantHi @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,
MaheshFebruary 24, 2016 at 5:05 pm in reply to: Remove categories, tags, leave reply, previous and next post underneath post #86219Mahesh
ParticipantHi @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,
MaheshFebruary 24, 2016 at 4:21 pm in reply to: Remove categories, tags, leave reply, previous and next post underneath post #86211Mahesh
ParticipantHi @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,
MaheshMahesh
ParticipantMahesh
ParticipantHi @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,
MaheshMahesh
ParticipantHi @micha,
The name and value attribute is to assign name and specific value for that input option.
Regards,
MaheshMahesh
ParticipantHi @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,
MaheshMahesh
ParticipantHi @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=W95SuabDZi8Let me know if any problem.
Regards,
MaheshMahesh
ParticipantHi @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,
MaheshMahesh
ParticipantHi @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" />DBut 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,
MaheshFebruary 24, 2016 at 11:44 am in reply to: Add translation for "Leave a comment" and "% Comments" links on top of posts #86178Mahesh
ParticipantHi @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.poandpt_BR.mofile fromclean-box.pot. I downloaded thept_BR.pofile from the link you’ve provided and made it work as per theclean-box.potfile by copying the header inpt_BR.pofile fromclean-box.potfile. 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,
MaheshMahesh
ParticipantHi @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 -
AuthorPosts
