Forum Replies Created
-
AuthorPosts
-
Mahesh
ParticipantSorry for the late reply. Just checked your site, you are using Catch Base Pro 3.1. and in your theme’s
style.cssfollowing lines are missing, that is why edited date is being displayed..byline, .updated:not(.published) { display: none; } .single .byline, .group-blog .byline { display: inline; }Either add the above styles in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box or child theme’s
style.cssOR update your theme to version 3.2.Regards,
MaheshMahesh
ParticipantHi @kerrigo,
How are you doing? Just to notice you that Create 2.0 is released and is available for download, please update your copy too.
Regards,
MaheshMahesh
ParticipantHi @Jos,
You can make it two column with following CSS, if that is what you mean.
#featured-content.layout-three .hentry{ width: 50%; } #featured-content.layout-three .featured-content-image { text-align: center; }The image you’ve put seem to be broken. Could you please share an image again to make it more clear.
Regards,
MaheshMahesh
ParticipantHi @[email protected],
For the above, you have to create a child theme. You can find more details on creating child theme HERE. Then in child theme’s
functions.phpadd the following codes.add_action( 'init' , 'catchresponsive_child_adjust_image_size'); function catchresponsive_child_adjust_image_size() { remove_image_size( 'catchresponsive-square'); add_image_size( 'catchresponsive-square', 300, 197, true); }Then go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
.excerpt-image-left .has-post-thumbnail .archive-post-wrap .entry-container { width: 60%; } .excerpt-image-left .has-post-thumbnail .archive-post-wrap .featured-image { max-width: 300px; width: 39%; }Regards,
MaheshMahesh
ParticipantHi @Torshi,
For the above, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
#feature-slider .entry-container { opacity: 1; }Regards,
MaheshMahesh
ParticipantHi @Ldekker,
I assume you mean to place the Title text to adjacent right to the logo. This feature is included in Catch Responsive theme by default. Go to “Dashboard=> Appearance=> Customize=> Site Identity” and make sure Display Header Text is checked. Then scroll down to bottom and make sure that Check to move Site Title and Tagline before logo is unchecked. Click Save and check in the front page.
Let me know if this helped.
Regards,
MaheshMahesh
ParticipantHi @Olivier,
For this you’ll need further customization in the plugin and is beyond theme support scope. I recommend you to contact the plugin support. I am afraid the above mentioned plugin will only lets you manage the plugin page wise as the feature provided by the theme itself.
Let me know if I can help you further.
Regards,
MaheshMahesh
ParticipantHi @Olivier,
Please follow along.
Go to “Dashboard=> Appearance=> Widgets” then, drag your EasyRotator widget into Main Sidebar and save it. It will show the easyrotator in sidebar in all pages (including homepage, post page, archives etc) only if other sidebars are all left empty. Or you need to add widgets to other sidebars(Homepage sidebar, Archive sidebar, Page sidebar, Post sidebar) as well.Hope this helps you. Let me know if any problem.
Regards,
MaheshMahesh
ParticipantHi @debbiewilmot,
Thats great to know you’ve got it figured out yourself.
Have a nice day!Regards,
MaheshMahesh
ParticipantHi @Anton,
For that, go to “Dashoboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
.post-160 .entry-title { text-align: center; }Regards,
MaheshMahesh
ParticipantHi @Kenta,
In WordPress,
functions.phpis the core function. Only the functions included infunctions.phpwill be executed. Just to make you clear on the above issue, in Adventurous Pro,adventurous-template-tags.phpis included infunctions.php. It would be easy to work/find the functions in seperate small file than in a single large file.
So if you prefer to follow the theme’s way of including, then you can put the function toadventurous-template-tags.phpand then include it in child theme’sfunctions.php.Hope it makes you clear.
Let me know if any problem or confusion.Regards,
MaheshMahesh
ParticipantHi @Raielene,
Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.
#hgroup, #header-right.header-sidebar { padding-top: 10px; } #hgroup-wrap { padding-bottom: 10px; } @media screen and (max-width: 960px){ #hgroup-wrap { padding-top: 10px; } }Regards,
MaheshMahesh
ParticipantHi @husker,
It is because margin-bottom or <p> tag in #featured-content is set to 0 by default. You can be overridden with Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
#featured-content p { margin-bottom: 20px; }Regards,
MaheshFebruary 1, 2016 at 11:38 am in reply to: test post: no action required Some posts not displaying on homepage #84306Mahesh
ParticipantHi @mamatapk,
Just checked your site, and you are using Clean Box Pro. For fixing the above issue, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Homepage/Frontpage Options” and make sure that either all the categories are selected or none are selected. Then all the latest posts will be displayed in the homepage regardless of their categories.
It seems the issue has been fixed since post from different categories are being displayed now.Regards,
MaheshFebruary 1, 2016 at 10:57 am in reply to: Trying to move the logo to the left of the Site Title #84304Mahesh
ParticipantHi @Connie,
Thank you for using Clean Box Pro.
For the above change, please go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.@media screen and (min-width: 768px){ #site-header { float: left; clear: none; } #site-logo { float: left; clear: none; margin-right: 20px; } }Regards,
Mahesh -
AuthorPosts
