Forum Replies Created

Viewing 20 posts - 4,841 through 4,860 (of 4,922 total)
  • Author
    Posts
  • in reply to: error in category-template.php #81886
    Mahesh
    Keymaster

    Hi @Simon,

    Please try changing to core theme i.e. twentyfourteen, twentyfifteen etc, if the the error still shows up it is a plugin issue, try deactivating plugins and check it.

    Regards,
    Mahesh

    in reply to: How to make featured slider image width of screen? #81820
    Mahesh
    Keymaster

    Hi @Robert,

    Please post in your site url.

    Regards,
    Mahesh

    in reply to: Featured Slider covering Menu DropDown #81819
    Mahesh
    Keymaster

    Hi @Keith,

    This is a bit complicated, Sakin will answer this.

    Regards,
    Mahesh

    in reply to: error in category-template.php #81818
    Mahesh
    Keymaster

    Hi @Simon,

    This is not the theme issue, may be some plugins you’ve used is causing this. Try deactivating the plugins and check it again. It would be better if you post in your site url.

    Regards,
    Mahesh

    in reply to: Posts & Blog Seperate #81817
    Mahesh
    Keymaster

    Hi @Steve,

    For this you have to create custom template. Then create a page and assign that template to it. Then Go to “Dashboard=> Appearance=> Customize=> Static Front Page and select “A static page” from “Front page displays”. And select the recently create post as Front page and Blog page in Post page. In custom template you’ll need to add the code to display custom posts you want in the front page.

    This is out of the theme scope, you’ll need to hire a customizer.

    Regards,
    Mahesh

    in reply to: Homepage language #81812
    Mahesh
    Keymaster

    Hi @Steve

    Thank you for upgrading to Adventurous Pro version.

    The theme is already translation ready, you can use translation plugins like qTranslate, WPML. You need to follow their instructions for implementation.
    You’ll need to contact their support.

    Let me know if there is any other theme related problems.

    Regards,
    Mahesh

    in reply to: Use 1 Header-Image on frontpage instead of slider #81811
    Mahesh
    Keymaster

    Hi @Frank,

    For that, first disable the slider. Go to “Dashboard=> Appearance=> Customize=> Featured Slider=> Slider Options” and select “Disable” option in “Enable Slider” dropdown. Then go back to “Customize=> Header Image” and select “Entire Site, Page/Post Featured Image” option from “Enable Featured Header Image” dropdown. Click “Save & Publish” and check the front page.

    Regards,
    Mahesh

    Mahesh
    Keymaster

    Hi @Lucia,

    Just went through your site. In the Custom CSS, there is an additional closing braces at the very end, please remove it. Please add the above CSS in it, it will work fine. You can also remove the following line from Custom CSS:

    @media screen and (min-width: 961px) {
    }

    Let me know if this helps.

    Regards,
    Mahesh

    in reply to: Page title font color #81808
    Mahesh
    Keymaster

    Hi Alvin,

    For changing sidebar widget titles font color, add the following CSS:

    #secondary .widget-title{
         color: green;
    }

    Let me know if any problem arises and please post your site url.

    Regards,
    Mahesh

    in reply to: Mobile menu – some entrys disabled #81760
    Mahesh
    Keymaster

    Hi @mailhunter,

    For removing large dark lines add following Custom CSS:

    @media screen and (max-width: 960px) {
    	.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-535 ul.sub-menu,
    	.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-538 ul.sub-menu,
    	.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-540 ul.sub-menu{
    		border-top: none;
    	}
    }

    For the second issue, image not centered, it is a bit complicated, @Sakin will answer this.

    in reply to: Can't save anything in theme option page #81756
    Mahesh
    Keymaster

    Hi @Meunier,

    I think you are admin yourself. For admin, there should not be any rights problems. Could you please clarify any further on what problems do you get. Please try to add some Custom CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and check it if the values are saving or not.

    Let me know if problem persists.

    Regards,
    Mahesh

    in reply to: Page title font color #81755
    Mahesh
    Keymaster

    Hi @Alvin,

    Please replace your CSS with following:

    #main #content .page h1.entry-title > a {
        font-size: 24px;
        color:#777;
    }

    Let me know if this helps.

    Regards,
    Mahesh

    in reply to: Mobile menu – some entrys disabled #81754
    Mahesh
    Keymaster

    Hi @mailhunter,

    I think you are trying to hide the item only in mobile view. If so, please use the following CSS:

    @media screen and (max-width:961px){
        .no-mobile-menu-item {
            display:none !important;
        }
    }

    Let me know if this solves your issue.

    Regards,
    Mahesh

    in reply to: Background Image and Background Scroll #81753
    Mahesh
    Keymaster

    Hi @matthewseanmclachlan,

    I think you’ve edit in the theme files for custom background. This can be achieved with Custom CSS. Remove other codes you’ve add into the theme for background image.

    In “Dashboard=> Appearance=> Theme Options=> Custom CSS”, remove the following codes:

    #sidebar-header-top { background-color: #ffffff; }
    #branding { background-color: #ffffff; }
    #header-image { background-color: #ffffff; }
    #main-slider { background-color: #ffffff; }
    #main-slider .hentry { background-color: transparent; }
    #main { background-color: #ffffff; }

    And add the following :

    body { 
        background-image: url('http://www.trendfly.org/wp-content/uploads/2015/12/Web_Blue-Print.jpg'); 
        background-repeat: no-repeat; 
        background-position: top center; 
        background-attachment: fixed;
    }
    #branding { 
        background-color: transparent; 
    }

    Leave the other as it is. Hope this helps with what you want. Please clarify on background stretching when centered point.

    Regards,
    Mahesh

    Mahesh
    Keymaster

    Hi Lucia,

    Yes you can achieve it with by creating a child theme too, but as it is just a design change it can be achieved with simple Custom CSS too. I’ve checked the with above CSS in Catch Evolution Pro and is working fine.

    Please post your site url so I could check it.

    Regards,
    Mahesh

    in reply to: turn off comments #81751
    Mahesh
    Keymaster

    Hi [email protected],

    The option I suggested is the WordPress’s default option. On add/edit post, you’ll see “Screen Options” button just beside “Help” button, click it and some checkbox options will drop in. Check on “Discussion” option in Boxes option. Then you’ll see “Discussion” option under the post content box. Then you can disable comments in post by unchecking “Allow comments” checkbox.

    I hope you understand, let me know if any problem arises.

    Regards,
    Mahesh

    in reply to: turn off comments #81624
    Mahesh
    Keymaster

    Hi @[email protected],

    Comments for blog can be turned off in two ways.

    1. Go to Dashboard=> Posts=> All posts -> click ‘Quickedit’ and Uncheck ‘Allow comments’

    or

    2. Go to Dashboard=> Posts=> Edit post -> ‘Screen options’ near the top right – Check ‘Discussion’ – scroll below post editor – Uncheck ‘Allow comment’

    Regards,
    Mahesh

    in reply to: plug in for posting #81623
    Mahesh
    Keymaster

    Hi @[email protected],

    Sorry, I don’t know the exact plugin fit for your requirement. Please search the plugins HERE

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #81615
    Mahesh
    Keymaster

    Hi @rflores,

    You have used the image for post’s featured image to fit in image slider. It will be automatically cropped to width 210px height 210px. Similarly, the image in the examples you’ve mentioned is cropped to 210px that is why only the center portion of image is shown.

    I hope you understand.

    Regards,
    Mahesh

    in reply to: bigger logo in the header #81612
    Mahesh
    Keymaster

    Hi @FOEC,

    For your French Website: http://fr.ccof-foec.org/ add the following CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box:

    #secondary-menu ul.menu #menu-item-1060 > a {
        color: #fff;
        background-color: #0000ff;
    }

    Regards,
    Mahesh

Viewing 20 posts - 4,841 through 4,860 (of 4,922 total)