Forum Replies Created

Viewing 20 posts - 1,661 through 1,680 (of 2,006 total)
  • Author
    Posts
  • in reply to: nextgen gallery css #87843
    Pratik
    Member

    Hi @effess,
    I think the CSS file is generated on the fly as Custom CSS is changed. It will be better if ask for support in their support forum : https://wordpress.org/support/plugin/nextgen-gallery

    Regards,
    Pratik

    in reply to: Page titles #87842
    Pratik
    Member

    Hi @creativesigns,

    You have following code in your Appearance=> Customize=> Custom CSS box:

    
    #main .page header.entry-header{
       display: none;
    }
    

    Just edit it to following:

    
    .home #main .page header.entry-header{
       display: none;
    }
    

    And it should only remove the page title on home page.

    Let me know if it works or not.

    Regards,
    Pratik

    in reply to: Need Borders / Shadow Behind Page/Post #87841
    Pratik
    Member

    Hi @Shop43,

    1. The effect is from a plugin that you have installed called Thrive Visual Editor. You will need to ask for support from that plugin as it falls outside our theme support scope.

    2. The content and widget area in home page has been generated from the plugin above so it will be difficult to provide support for it. For Other Pages, you can use following CSS code in Appearance=> Customize => Theme Options=> Custom CSS Styles box:
    `
    #primary, #secondary {
    border: 1px solid #000000;
    }

    For more border options, please view following links:
    * http://www.w3schools.com/css/css_border.asp
    * http://www.w3schools.com/css/css3_borders.asp

    3. I cannot understand what you exactly want. Can you explain this a bit more?

    4. Great you solved it yourself.

    5. Add the code here in Appearance=> Customize => Theme Options=> Custom CSS Styles box.

    Regards,
    Pratik

    in reply to: Change the menu #87840
    Pratik
    Member

    Hi @stefabsharpe,
    Can you let me know which vertical line you are talking about? Can you show with a screenshot?

    Regards,
    Pratik

    in reply to: ul list #87793
    Pratik
    Member

    Hi @jennifer,

    Can you post in your site url and the place you want wingding so that I can check it and provide you with Custom CSS code?

    Also, please let me know which bullet image you exactly want.

    Regards,
    Pratik

    in reply to: Edit Meta-Tag for Affiliate-Program #87792
    Pratik
    Member

    Hi @jonny,

    It is not recommended to edit core theme files. If you want to add the validator codes please use Catch Web Tools plugin’s Webmaster Module. It has google, bing, alexa, yandex and other site verification tools too.

    For custom verification, add the code in header scripts and it should work.

    Regards,
    Pratik

    in reply to: Theme's ran through a checker? #87791
    Pratik
    Member

    Hi @krmarshall87,
    We do run our themes via document validators.

    One H1 per page is old. It was only valid for HTML4.

    In HTML5, you can have more then one H1 tag. That was issue only when you use HTML4 tags. In HTML5, H1 tag per article tag is good for SEO and we have carefully designed H1 tags with special attention on header tag and headings

    Full Frame theme is build in HTML5, CSS3 and Responsive design. So, H1 is better for SEO then H2.

    You can also check this Video http://www.youtube.com/watch?v=GIn5qJKU8VM by Google software engineer Matt Cutts, who clearly states that you can use multiple H1 but don’t over do it. Also use h1 specific to heading and header tags.

    You can also check this article URL http://html5doctor.com/html5-seo-search-engine-optimisation/

    As for other errors, most of them are accessibility errors. This theme is not accessibility-ready.

    Regards,
    Pratik

    in reply to: Style text widget in header #87788
    Pratik
    Member

    Hi @Cybersnaby,

    Can you please post in your site url so I can check it.

    Regards,
    Pratik

    in reply to: Two Questions- Change width Center and Mobile Menü #87787
    Pratik
    Member

    Hi @zerocuul,

    1. If you change the width, then you will need to adjust the sizes for all devices. Please hire a customizer to make it work on all devices. There will be a lot of changes. Also, consider using a child theme and its style.css as there will be quite a few changes. Custom CSS box is only meant for small changes.

    2. It is possible to change color of child menu.For that, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:

    
    #branding #access, #colophon #access-footer, #branding ul.menu ul a {
        background: #CD0000;
    }
    

    Change the hex color value to any value you like.

    Regards,
    Pratik

    in reply to: change blog post title font #87668
    Pratik
    Member

    Hi @shawzepe,

    I have tried it on several devices and its working fine. Can you let me know which device have you tested on?

    It can also be cache related issue. Try clearing your cache and try again.

    Regards,
    Pratik

    in reply to: change blog post title font #87663
    Pratik
    Member

    Hi @shawzepe,

    For tagline, use following code:

    
    .site-description {
         font-size: 30px;
         font-family: 'Nothing You Could Do’, cursive;
    }
    

    You have just left out ' before Nothing You Could Do', cursive;, just add it and it will work.

    in reply to: change blog post title font #87582
    Pratik
    Member

    hi @shawzepe,

    For google fonts, first you need to import it. Please use following code in place of the one provided above:

    
    @font-face {
        font-family: "Nothing You Could Do";
        font-style: normal;
        font-weight: 400;
        src: local("Nothing You Could Do"), local("NothingYouCouldDo"), url("https://fonts.gstatic.com/l/font?kit=jpk1K3jbJoyoK0XKaSyQAeCvl4JxFnZUWpaqQgqDg5sfsqZYbonxmjr9wFM3sVRn9YSfFofyP5ukujV45nKOOamc4FshcY9zUn_5sqFQ_TUEHOew_pTBo2m42rrK0r44&skey=772542671f40e9f1") format("woff2");
    }
    
    #main article .entry-title{
        font-family: 'Nothing You Could Do', cursive;
    }
    
    in reply to: bbPress forum appearance #87495
    Pratik
    Member

    hi SchHaza,
    This issue is mostly plugin related so you need to get the support from the plugin support. This is outside our theme support scope.

    Let me know if there is anything theme related issue.

    Regards,
    Pratik

    in reply to: change blog post title font #87377
    Pratik
    Member

    Hi,

    Glad it worked out. If you liked our theme and support, please leave a review at here.

    Thanks,
    Pratik

    in reply to: change blog post title font #87341
    Pratik
    Member

    Hi @shawzepe,

    To change the title of blog posts, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:

    
    #main article .entry-title{
        font-family: "Times New Roman", Georgia, Serif;
    }
    
    

    More details about font-family can be found here .

    If you upgrade to Catch Adaptive Pro version, it has the option so you just need to select the font from drop down list of fonts.

    Regards,
    Pratik

    in reply to: How can I remove category under my post? #87340
    Pratik
    Member

    Hi @Sziszi,

    You can use following code:

    
    #content .tags {
         display: none;
    }
    

    Let me know if this works out or not.

    Regards,
    Pratik

    in reply to: Primary menu (Top) to become transparent/overlaid #87339
    Pratik
    Member

    Hi Eva,

    Please post in your site URL so I can check it.

    Regards,
    Pratik

    in reply to: bbPress forum appearance #87310
    Pratik
    Member

    Hi SciHaza,
    Can you explain what is it exactly that you want? Also, the site url would be better.
    Regards,
    Pratik

    in reply to: hyphenation image slider contact detail #87208
    Pratik
    Member

    Hi Karen,

    In the page you have JetPack Gallery installed so it is taking effect. To achieve what you want, try adding the images separately and link them to the external page instead of adding a gallery. Or, you can try other gallery plugins in WordPress.org Plugins Repo.

    Regards,
    Pratik

    in reply to: Search Console – Google issue #87065
    Pratik
    Member

    Hi @nnicorescu,

    I apologize but even the pro theme will not fulfill this requirement. Free and pro theme have same width, there are other features but the width will remain the same.

    Regards,
    Pratik

Viewing 20 posts - 1,661 through 1,680 (of 2,006 total)