Forum Replies Created

Viewing 20 posts - 9,041 through 9,060 (of 14,497 total)
  • Author
    Posts
  • in reply to: Customized link url for photos in Catch Everest. #19395
    Sakin
    Keymaster

    @natoulie: Updating plugin and WordPress core is completely fine and nothing to do with the content. Also updating theme is fine if you have customize the theme in right way. This means, if you have customize the theme using Theme Options, Custom CSS and Settings then updating theme will not change anything. But if you have customized and core theme files such as style.css, functions.php, index.php and so on. Then updating the theme will revert these files into original core theme files and you will loose your edits. So, if you want to edit functions and files then you need to build child theme and edit it.

    So, when I look at your site. I don’t think you have edited any core theme file. In this case you can just update it. Sorry we don’t have videos, you can search in Youtube.com there are lots.

    in reply to: Need help removing the search bar, upper right #19393
    Sakin
    Keymaster

    @panselli: You can just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #header .social-search form.searchform { display: none; }

    in reply to: menu height, font and thick letters #19392
    Sakin
    Keymaster

    @chris: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box. Adjust the size and height as per your need.

    #header-menu ul.menu a {
        font-size: 16px;
        font-weight: bold;
        line-height: 4.5rem;
    }
    in reply to: Custom CSS not displaying on client's computer #19391
    Sakin
    Keymaster

    @ccdsmith: Can you send me your site URL. Have you customize the site or added any cahce plugin. Then you might need to clear the cache from your cache plugin settings.

    in reply to: Embedding video to featured Slider #19390
    Sakin
    Keymaster

    @chris: I cannot view your screenshot as it look like it’s in your computer. You need to update in your site or any image uploader site and then add the Image URL here.

    in reply to: featured slider #19389
    Sakin
    Keymaster

    @mark: Sorry I am bit confused about your request. I see that you have slider image of size 976×313. So, what you want to do with that. Can you explain it please. OR share screenshot of what you want.

    in reply to: Header + Mouse Roll over help #19386
    Sakin
    Keymaster

    @panselli: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #header { background: none #fff; }
    #main h2.entry-title a:hover,
    ul li a:hover, 
    ol li a:hover,
    #sidebar ul li a:hover, 
    #sidebar ol li a:hover,
    #footer a:hover {
    	color: #555;
    }
    in reply to: Password protection #19385
    Sakin
    Keymaster

    @EirikurVa: Try using W3 Total Cache plugin.

    in reply to: Theme update #19383
    Sakin
    Keymaster

    @bossydsmom: There is clear steps of instruction mention in our theme instruction page at http://catchthemes.com/theme-instructions/catch-box-pro . Your blog content and works are not stored in Theme. It is stored in your database. So, you will not lose anything is just deleting and adding new themes.

    Your purchase come with Support Forum access and if needed email support as well. I will email you if you need email support. Support Ticket needs support membership.

    in reply to: deleting the 3 example posts #19365
    Sakin
    Keymaster

    @chris: You can go to “Appearance => Theme Options => Homepage Settings => Homepage Featured Content Options” and then check on “Disable Homepage Featured Content” and save it.

    in reply to: site map footer #19363
    Sakin
    Keymaster

    @mark: For this you can simply go to “Appearance => Theme Options => Footer Options => Footer Editor” and add the code as per you need. The sample code is as below.
    <div class="copyright">[footer-image] Copyright &copy; [the-year] <span>[site-link]</span>. All Right Reserved. <a title="Privacy Policy" href="http://catchthemes.com/privacy-policy/">Privacy Policy</a> | <a title="Site Map" href="Site Map URL">Site Map</a></div><div class="powered-by">Powered by: [wp-link] | Theme: [theme-link]</div>

    in reply to: Jumbled Front Page #19362
    Sakin
    Keymaster

    @marcie1980: I see that you are using Simple Catch Free version where the front page blog layout is in Excerpt Mode. So, it will display the Featured Image, Post Title and the excerpt content. It will not display the full formatted content. See the demo page http://catchthemes.com/demo/simplecatch.

    The option will be like to upgrade to pro version where you have option to use Full Content mode from Theme Option panel. Or you can customize the free theme by building child theme and the copy content.php file and change the_excerpt() to the_content() and adjust the css as per your need.

    in reply to: Password protection #19361
    Sakin
    Keymaster

    @EirikurVa: what’s your password protected URL and the password and then I can test in. Also did you keep the WordPress page password or through plugins? Sometime, it might be cache issues. So, if you have installed any cache plugin then please clear the cache and check in.

    in reply to: Embedding video to featured Slider #19360
    Sakin
    Keymaster

    @chris: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to remove the faint border lines along the slides.
    .featured-slider .slides { box-shadow: none; }

    You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to add a slightly lighter colored background like in the catch box theme

    #main-slider {
        background-color: #555;
        padding: 10px;
    }
    in reply to: Centralizing menu #19346
    Sakin
    Keymaster

    @Joaozinho: Sorry typo mistake in Border spelling. I have correct the css.

    The following CSS will just remove one black border:

    #branding ul.menu li { border-left: none; }
    #branding ul.menu li:first-child { border-right: 1px solid #1b4266; }
    #branding ul.menu li:last-child { border-right: none; }

    But if you want to remove both the border then you can add the following:
    #branding ul.menu li { border: none; }

    in reply to: Centralizing menu #19343
    Sakin
    Keymaster

    @Joaozinho: I don’t see the above custom css in your site. Did you add in? If yes then try clearing your cache from WP Super Cache plugin settings.

    in reply to: Theme update #19341
    Sakin
    Keymaster

    @Joaozinho: As per my knowledge it’s database connection issue not the plugin issue. Hope it will not happen again.

    in reply to: Centralizing menu #19340
    Sakin
    Keymaster

    @Joaozinho: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #branding ul.menu li { border-left: none; }
    #branding ul.menu li:first-child { border-right: 1px solid #1b4266; }
    #branding ul.menu li:last-child { border-right: none; }
    in reply to: Theme update #19337
    Sakin
    Keymaster

    @Joaozinho: If you want to edit header.php files then you need to build child theme and edit the header.php file in your child theme. Also most of functions can be changed by adding the functions in your child theme functions.php file.

    If you are ok with the theme then you don’t necessary need to update. To update the changed files, I recommend it to test first in your test server and work on changes.

    in reply to: Embedding video to featured Slider #19333
    Sakin
    Keymaster

    @chris: Sorry Catch Everest Pro theme doesn’t have option to add video in the slider. For this you need to build child theme and edit the code. Better hire customizer for this http://catchthemes.com/hire-customizer/

Viewing 20 posts - 9,041 through 9,060 (of 14,497 total)