Forum Replies Created

Viewing 20 posts - 3,481 through 3,500 (of 4,908 total)
  • Author
    Posts
  • in reply to: size pictures Featured Page Grid Content #93467
    Mahesh
    Participant

    @calmo16: It seems you’ve fixed the issue. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Mobile menu not working (possible CSS issue?) #93466
    Mahesh
    Participant

    @robertl: Seems, you’re using a twitter widget, which is causing a script error. May be it is causing the issue. Please try deactivating all your plugins and check if it resolves the issue.

    Add the following CSS for changing color of titles in search.

    .search #main .page header.entry-header .entry-title a {
        color: #9CCCD4;
    }

    Regards,
    Mahesh

    in reply to: Sidebar Menu #93464
    Mahesh
    Participant

    @tatsujin: Do you mean menu in the sidebar area? If yes, yes, this is possible. Actually this function is available is Free version.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Gap above header image #93439
    Mahesh
    Participant

    @libertylobby: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #header-featured-image .wrapper {
        width: 100%;
    }
    
    #header-featured-image img.wp-post-image {
        width: 100%;
    }

    Regards,
    Mahesh

    in reply to: Header image and size of post #93436
    Mahesh
    Participant

    @lemri025: Go Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS and add the following CSS:

    #header .layout-978 {
        background-image: url("some_image_url");
        background-repeat: no-repeat;
        background-size: cover;
    }

    Note: Please replace some_image_url in the above code with your desired image url.

    For the second one, you’ll need to hire a customizer.

    Regards,
    Mahesh

    in reply to: Featured Content for a standar page #93427
    Mahesh
    Participant

    @salamali: Thank you for your appreciation.
    Have a nice day!!! 🙂

    Regards,
    Mahesh

    in reply to: Header Image on mobile device only #93426
    Mahesh
    Participant

    @friarpaul: Thank you for your appreciation and supporting us.
    Have a nice day!!! 🙂

    Regards,
    Mahesh

    in reply to: Mobile menu not working (possible CSS issue?) #93425
    Mahesh
    Participant

    @robertl: You’ve custom CSS to hide title from the site, that is why its not displaying in search results. For displaying titles in search results page, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    /*This code shows page title on search page but still hidess the title on other pages*/
    .search #main .page header.entry-header {
    	display: block;
    }

    I checked your site’s source again and found two jQuery libs.
    1. WordPress’s own jQuery Lib
    <script type='text/javascript' src='http://tuanzbuild.tuanz.org.nz/wp-includes/js/jquery/jquery.js?ver=1.12.3'></script>
    2. May be from some plugins or so.
    <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js" type="text/javascript"></script>

    Regards,
    Mahesh

    in reply to: Hover & Breadcrumb colors, a bug, etc #93423
    Mahesh
    Participant

    @hmiller: Sorry for the late reply.
    1. Do you get any error message or just the featured content or slider disappears?

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

    #featured-content .entry-title {
        text-align: center;
    }

    3. Thanks for the suggestion. Its is the base color for the theme. But you can change the colors to your desired colors through customizer, and as you said if you do need additional customization, Custom CSS area can be used.

    Regards,
    Mahesh

    in reply to: center menu #93370
    Mahesh
    Participant

    @vivialmonacidgmail-com: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .menu.clean-box-nav-menu {
        text-align: center;
        width: 100%
    }
    
    .menu.clean-box-nav-menu > li {
        float: none;
    }
    
    #header-toggle {
        display: none;
    }
    
    .nav-secondary .wrapper,
    #fixed-header-top {
        background-color: #000;
    }

    Note: Please change the background-color hex to your desired color.

    Regards,
    Mahesh

    in reply to: Mobile menu not working (possible CSS issue?) #93285
    Mahesh
    Participant

    @robertl: Are you using plugin. Seems the the script is creating a conflict. Jquery is already enqueued in WordPress.
    <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js" type="text/javascript"></script>
    This script enques it again and may cause error.
    Let me know further.

    Regards,
    Mahesh

    in reply to: How to change first page thubnail's size #93284
    Mahesh
    Participant

    @leonardo-martinez: For testing, I copied the code to functions.php with a trailing brace and it worked fine on our server.
    It should have worked fine. You can download the theme file from the link below:
    https://www.dropbox.com/s/dyzcmcrlhuv9jbu/catch-responsive-child.zip?dl=0
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: How to retrieve php files? #93283
    Mahesh
    Participant

    @mandala528: Yes, that will work fine too. You can download theme from My Account Page and extract header.php file in adventurous-pro folder. And upload it to the server via FTP.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Font Size and Post Cutomization #93281
    Mahesh
    Participant

    @alwilleford: For subtitle, you have to do some code customizations. First you’ll need to create a child theme. You can find more details on creating child theme HERE. Then copy content.php from Clean Journal to your child theme. Then add the following codes, in the content.php file line 38 (just above <div class="entry-summary"> line).

    <div class="custom-subtitle">
        <p>Your subtitle goes here.</p>
    </div>

    This will add subtitle. This is a static string, what you put in here, displays in the front end too.
    Note: Please Change the string/text (Your subtitle goes here.) in the above code as you desired.

    Regards,
    Mahesh

    in reply to: How to retrieve php files? #93234
    Mahesh
    Participant

    @mandala528: Do you mean header.php and other files or the setting like header images? If you mean to retrieve the file then I recommend you to re-install the theme which will fix the issue. Let me know further.

    Regards,
    Mahesh

    in reply to: Header Image on mobile device only #93233
    Mahesh
    Participant

    @friarpaul: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    @media screen and (max-width: 600px) {
        #masthead {
            border-bottom: 1px solid #000;
        }
    }

    Regards,
    Mahesh

    in reply to: Logo, social icons and menu gone #93232
    Mahesh
    Participant

    @petralundin: What version of theme and WordPress were you using before update? Minor regular updates should have not caused the problem.
    Let me know further.

    Regards,
    Mahesh

    in reply to: How to change first page thubnail's size #93231
    Mahesh
    Participant

    @leonardo-martinez: Was your child theme working fine before? Please remove the code I’ve provided you above from the child theme and test if the layout is working fine.
    The function is working fine as I test in our server.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Images Suddenly Missing #93230
    Mahesh
    Participant

    @southwest-di: Did you updated the WordPress version recently? Sometimes, update may cause the issue even without plugin updates. But when I checked your site yesterday, at first I didn’t see any image in your site and after a while, refreshing page and navigating through pages back and forth, the images reappeared (logo and slider). Which seemed to work fine.
    I checked you site, and now the urls are normal and site seems to be working fine.
    I recommend you to contact jetpack for the issue.

    Regards,
    Mahesh

    in reply to: Featured Content for a standar page #93229
    Mahesh
    Participant

    @salamali: First enable the Featured Content. Go to Dashboard=> Appearance=> Cusotmize=> Featured Content select Entire Site in
    Enable Featured Content on. Then select Featured Page Content in Select Content Type and choose you desired page to show up as Featured Content in the Featured Page # below.
    After that, as you want to show Featured Content in a specific page only, you’ll need to add some custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS.

    #featured-content {
    	display: none;
    }
    
    .page-id-950 #featured-content {
    	display: block;
    }

    Let me know if any problem.

    Regards,
    Mahesh

Viewing 20 posts - 3,481 through 3,500 (of 4,908 total)