Forum Replies Created

Viewing 20 posts - 4,541 through 4,560 (of 4,916 total)
  • Author
    Posts
  • in reply to: Tekst next to the logo #84413
    Mahesh
    Participant

    Hi @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,
    Mahesh

    in reply to: Header height #84412
    Mahesh
    Participant

    Hi @Raielene,

    Please post in your site url.

    Regards,
    Mahesh

    in reply to: Easyrotator Home page Sidepage or other page #84411
    Mahesh
    Participant

    Hi @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,
    Mahesh

    in reply to: Easyrotator Home page Sidepage or other page #84347
    Mahesh
    Participant

    Hi @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,
    Mahesh

    in reply to: CSS #84345
    Mahesh
    Participant

    Hi @Anton,

    Thank you for your appreciation.

    Regards,
    Mahesh

    in reply to: Menu landing page #84329
    Mahesh
    Participant

    Hi @debbiewilmot,

    Thats great to know you’ve got it figured out yourself.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: CSS #84327
    Mahesh
    Participant

    Hi @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,
    Mahesh

    in reply to: Inline gallery display only one column #84326
    Mahesh
    Participant

    Hi @wwwalker,

    Yes, now its working fine.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Display tags in each excerpt on top page #84325
    Mahesh
    Participant

    Hi @Kenta,

    In WordPress, functions.php is the core function. Only the functions included in functions.php will be executed. Just to make you clear on the above issue, in Adventurous Pro, adventurous-template-tags.php is included in functions.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 to adventurous-template-tags.php and then include it in child theme’s functions.php.

    Hope it makes you clear.
    Let me know if any problem or confusion.

    Regards,
    Mahesh

    in reply to: Header height #84308
    Mahesh
    Participant

    Hi @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,
    Mahesh

    in reply to: Featured Content paragraph Spacing #84307
    Mahesh
    Participant

    Hi @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,
    Mahesh

    Mahesh
    Participant

    Hi @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,
    Mahesh

    in reply to: Trying to move the logo to the left of the Site Title #84304
    Mahesh
    Participant

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

    in reply to: String "Continue reading" is not translated #84302
    Mahesh
    Participant

    Hi @jie66,

    Thank you for your appreciation and your help too.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: change text from copyright #84301
    Mahesh
    Participant

    Hi @marga,

    In the above code, please replace the follwing lines of code.
    $title_attribute =the_title_attribute( array( 'before' => __( 'Permalink to:', 'catch-base' ), 'echo' => false ) );
    With this:
    $title_attribute =the_title_attribute( array( 'echo' => false ) );

    Let me know if any problem arises.

    Regards,
    Mahesh

    in reply to: CSS #84297
    Mahesh
    Participant

    Hi @Anton,

    For the hover effect in images under slider, go to “Dashoboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    .post-160 a img {
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
      
    .post-160 a:hover img {
        -moz-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    Regards,
    Mahesh

    in reply to: 1 column not 3 columns for gallery #84295
    Mahesh
    Participant

    Hi @wwwalker,

    Yes, sometimes image’s sizes and proportions do affect the layout even with proper CSS. And sometimes Custom CSS seems to be necessity.

    Regards,
    Mahesh

    in reply to: Featured Content 2 images. #84294
    Mahesh
    Participant

    Hi @husker,

    That’s great to know you’ve found the solution.
    The issue of double image, hope @pratik have clarified it to you about the feature.
    It seems you’ve managed to hide the title of the Featured Content section as well.

    Regards,
    Mahesh

    in reply to: Inline gallery display only one column #84291
    Mahesh
    Participant

    Hi @wwwalker,

    Sorry for the late reply.
    That’s great to know that you’ve found the solution to your issue by yourself. I was about to check your site but seems your site’s down with message “Error establishing a database connection”.

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Mobile menu shows up on desktop site #84290
    Mahesh
    Participant

    Hi @captain eo,

    Have you managed to fix the issue or something. We’ve checked your site and everything’s fine, menu is working fine and there is no “Skip to Content” displaying at the top of the site either.

    Let me know if any further problem.

    Regards,
    Mahesh

Viewing 20 posts - 4,541 through 4,560 (of 4,916 total)