Forum Replies Created

Viewing 20 posts - 6,661 through 6,680 (of 14,504 total)
  • Author
    Posts
  • in reply to: Remove border around body #42465
    Sakin
    Keymaster

    Hello Maryann,

    You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to remove the box shadow.
    .site { box-shadow: none; }

    Regards,
    Sakin

    in reply to: Gallery slideshow javascript error #42464
    Sakin
    Keymaster

    Hello Maryan,

    For Cache, we recommend W3 Total Cache instead of WP Super Cache. But you need to configure it properly to make it work smooth.

    Sorry, this is not the slideshow that we have developed. I see that you are using Jetpack plugin Slideshow. So, ask in Jetpack plugin support forum.

    Regards,
    Sakin

    in reply to: font size #42448
    Sakin
    Keymaster

    @ashrafashraf: Try following css:
    .entry-content .lcp_catlist { font-size: 14px; }

    in reply to: Chosen Sidebar Not Being Applied to Page #42445
    Sakin
    Keymaster

    @Arisnel: The page that you have listed in here now is from buddypress. So, the page layout will not work in buddypress pages. I think we are in bit confusion about it. I will email you personally. Yes, I am the developer of Simple Catch Themes and I provide all the theme support.

    If want more detail paid support the you can hire customizer http://catchthemes.com/hire-customizer/

    in reply to: hide #42426
    Sakin
    Keymaster

    @ashrafashraf: Simply add the following css in “Appearance => Theme Options => Custom CSS” box.
    .entry-meta .by-author { display: none; }

    in reply to: Menu Colors #42425
    Sakin
    Keymaster

    @Highlander79: You shouldn’t edit or add any core theme files inside ‘adventurous’ theme directory as all your edits will be reverted back to original when you update or upgrade the theme. So, this is not the safe way to do it.

    The safe way to change the CSS style is either by adding your custom css in “Appearance => Theme Options => Custom CSS” box or by building child theme and adding it in your child theme style.css

    Thanks for your reply.

    in reply to: Header image, image caption, portfolio, and gallery #42423
    Sakin
    Keymaster

    @Patrice: Glad that no 2 is fixed.

    For no. 1: Here is the code in https://gist.github.com/catchthemes/317bcc9b582168d8473d and after you add this code in you child theme, make sure to change any value in theme options panel to clear the cache instantly otherwise you will see changes only after 24 hours.

    To reduce the space between the header logo image and the menu, you can adjust the padding bottom as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.
    #header-content { padding-bottom: 30px; }

    Check your Gallery test, did you add in featured image in that post http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/ and then after that you need to upload image in that post to show the images there. Please check in with your other Gallery post. It should work fine. Did you add in your Gallery post from “Galleries => Add New” or just “Posts => Add New”

    if this doesn’t work then let me know it. I need to check in your server and in this case I will send you personal email.

    in reply to: Featured Content Link URL #42422
    Sakin
    Keymaster

    @Anthony: Nice you worked it out yourself. Let me know if you have any other issue.

    in reply to: Adventurous Pro Mobile Menu not working #42418
    Sakin
    Keymaster

    @theraleighsocialclub: Oh you have added large image in the Header Top Sidebar. That is why it is showing issue. Actually, you should have only added small logo from “Appearance => Theme Options => Header Options” like in our demo page.

    So, to fix this, we need to keep mobile menu always on top. Try to add in following css in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (max-width: 980px) {	
    	#masthead { position: fixed; top: 0; }
    	.admin-bar #masthead { top: 32px; }
    	.site { padding-top: 40px; }
    }
    @media screen and (max-width: 782px) {
    	.admin-bar #masthead { top: 46px; }
    }
    in reply to: Putting Logo Image In Masthead #42417
    Sakin
    Keymaster

    @Highlander79: Yes, we have build this theme to add logo in masthead. I think you are confused with Logo and Header Featured Image.

    To add logo:
    1. Go to “Appearance => Theme Options => Header Options”
    2. Then in “Logo url”, either you can paste in your logo URL image or you can simply upload it by clicking on “Change Logo” button.
    3. Make sure you have un-checked “Disable Logo”
    4. Save changes and you will see your logo.

    Have a nice day.

    Sakin
    Keymaster

    @CoreyHerde: Sorry that you find it difficulty to change the slider image in Catch Kathmandu Free Version. We have been answering question about this in our forum already. Sorry, we never delete any support question here. We carefully answer it within 24 hours of post.

    For detail instructions, we always suggest you to see our theme instructions page at http://catchthemes.com/theme-instructions/catch-kathmandu/

    Now, to your question about Featured Post Slider:
    1. We are not using Free version as a Scam. Featured Post slider is created to highlight the post featured image, title and excerpt content. So, first you need to create posts and add in featured image.
    2. Then you can just go to “Appearance => Theme Options => Featured Slider => Featured Post Slider Options” and add in your post IDS.

    Video Instruction
    See this video for detail http://catchthemes.com/blog/videos-blog/video-series-adding-featured-post-slider/

    Have a nice day and if you have any other confusion then you can just post in here.

    Regards,
    Sakin

    in reply to: Can you turn off posters details? #42414
    Sakin
    Keymaster

    Hi Kat,

    The problem is that you are using Catch Everest Theme and visiting Simple Catch Theme support forum. So, these two themes are totally different and css will not work. Please use appropriate support forum http://catchthemes.com/support-forum/forum/catch-everest-public/

    I just check in your custom css and there is issue of extra bracket } that you need to remove first. Go to “Appearance => Theme Options => Custom CSS” box and see your code as:

    #featured-post .entry-header .entry-title a { color: #ff0000; }
    }
    #main #content ul.post-by { display: none; }

    There you can see extra } remove that and it should be as

    #featured-post .entry-header .entry-title a { color: #ff0000; }
    #main #content ul.post-by { display: none; }

    1. Then to remove the entry meta, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .entry-meta { display: none; }

    2. For slider text color, see the following css and then change the color code as per your need and add it in “Appearance => Theme Options => Custom CSS” box.

    /* Slider Title Color */
    #main-slider .entry-title a { color: #fff; }
    /* Slider Title Hover Color */
    #main-slider .entry-title a:hover { color: #000; }

    3. To hide the content in the slier you can just add the following css in “Appearance => Theme Options => Custom CSS” box.
    #main-slider .entry-content { display: none; }

    Have nice day and from next time please check in support forum before you post it.

    Regards,
    Sakin

    in reply to: post full width #42397
    Sakin
    Keymaster

    @ashrafashraf: For Full Width without sidebar, you need to go to “Appearance => Theme Options => Default Options”, then select “No Sidebar, Full Width” and save changes.

    in reply to: Header image, image caption, portfolio, and gallery #42395
    Sakin
    Keymaster

    @Patrice:
    1. Do you mean to remove the link from your Logo. Why do you want to do that? Lot of people use your logo link to go back to your homepage. CSS will not be able to remove the link from your logo. For that you need to modify the functions. So, first build child theme, you can download same child theme from http://catchthemes.com/blog/create-child-theme-wordpress/
    Then you can copy function catchthemes_headerdetails from catchthemes_functions.php file to your child theme functions.php file and then you can remove the link.

    2. For this, you can add following css in “Appearance => Theme Options => Custom CSS” box.

    .wp-caption .wp-caption-text:before { content: none; }
    .wp-caption .wp-caption-text { padding-left: 0; text-align: center; }

    3. If you are checking this page http://catchthemes.com/demo/catch-mustang/portfolio/portfolio-gallery/ then this is done through Jetpack plugin “carousel” module. For this, install Jetpack plugin and activate and configure “carousel” module http://jetpack.me/support/carousel/

    4. You can see your galleries at http://www.aedunlv.org/archives/gallery and for Gallery Post type, you need to create Gallery page from “Galleries => Add New” and then you can upload the images in that gallery page

    in reply to: Background image behind site-title #42387
    Sakin
    Keymaster

    @Mrcuss: Yes, you have already done that so, you don’t need to change anything. Your customization looks nice.

    Sakin
    Keymaster

    Hello Tanja,

    It’s strange why it is not working for you. On you add your email address in Email, it should work fine. As it’s working on our site.

    Ok I will email you personally to look at your site in details.

    Regards,
    Sakin

    in reply to: How to change color scheme of only one page #42383
    Sakin
    Keymaster

    @Baizurah: For link color of page ID 2, it will be as:
    .page-id-2 a { color: #000; }

    in reply to: Chosen Sidebar Not Being Applied to Page #42382
    Sakin
    Keymaster

    Hello Arisnel,

    But when I check in both of your pages, it’s showing same sidebar with
    1. Navigate…
    2. Search Entries…
    3. Like and Share Arisnel’s Blog on Facebook

    So, I don’t see any issue. Can you clear your browser cache and check in or try different browser.

    Regards,
    Sakin

    in reply to: Create Post Archive Page – best method? #42366
    Sakin
    Keymaster

    @macwebster: Sorry I don’t understand your question. Can you explain it more like the type of shortcode you are trying to add it and what you want to do with it.

    in reply to: How to change color scheme of only one page #42365
    Sakin
    Keymaster

    @Baizurah: Each page has it’s own unique class in body section. From which you can add in css to make it different. For pages you will see like this page-id-2 for your page ID 2 and for post you will see like this postid-96 for your post ID 96. Then you can change it as per your need.

    For example to change the Page ID 2 background.

    body.page-id-2 {
        background-color: #000;
    }

    To change the footer color of page ID 2, it will be

    .page-id-2 #site-generator {
        background-color: #000;
    }
Viewing 20 posts - 6,661 through 6,680 (of 14,504 total)