Page 8 – Acme Themes

Forum Replies Created

Viewing 15 posts - 106 through 120 (of 167 total)
  • Author
    Posts
  • in reply to: Grey placement backgrounds #5447
    acmethemes
    Keymaster

    Hello thaigerweb,

    Please use following custom CSS and let us know if your problem solved:

    @media screen and (max-width:640px){
    	.besides-slider .beside-thumb img{
    		max-width: 100%;
    		max-height: 100%;
    	}
    }

    Note : Custom CSS docs here https://doc.acmethemes.com/supermag/#HowtoaddcustomCSS

    Best Regards,
    AcmeThemes

    in reply to: How to add more social icons? #4808
    acmethemes
    Keymaster

    Hello frankscrub,

    You are using SuperMag theme, Please ask your query here http://www.acmethemes.com/supports/forum/supermag/ .

    Thanks,
    AcmeThemes

    in reply to: Some buttons won't load #5791
    acmethemes
    Keymaster

    Hello shanson,

    In you site, we found following console warning, which is preventing to load fonts:
    Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://www.themelrosecorporation.com/blog/wp-content/themes/acmeblogpro/assets/library/Font-Awesome/fonts/fontawesome-webfont.woff2?v=4.5.0. (Reason: CORS header 'Access-Control-Allow-Origin' missing).
    That is actually server issue.
    We have collected some information for you
    http://stackoverflow.com/questions/26125030/font-awesome-icons-not-showing-in-chrome-a-maxcdn-related-cross-origin-resource
    https://www.prestashop.com/forums/topic/345555-solved-glyphicons-font-awesome-not-correctly-displayed-in-firefox/

    We hope it will help you.

    Best Regards,
    AcmeThemes

    in reply to: Increasing Font Size For Content // Paragraph Only #5797
    acmethemes
    Keymaster

    Hello myra,

    You can use following Custom CSS for increasing font size.

    body {
        font-size: 16px;
    }

    Also, Please try following one too:

    .entry-content p {
        font-size: 16px;
    }

    Best Regards,
    AcmeThemes

    in reply to: Changing/Adding Latin Extended parameter to font #5152
    acmethemes
    Keymaster

    Hello zinomino,

    Thank you for using our theme.
    Please use Child Theme for adding custom functions or customizing the main theme.
    The code you are looking for changing is in the line number 84 of file acmethemes/core.php in Version: 1.1.9

    Let us know if your found solution will work or not.

    Best Regards,
    AcmeThemes

    in reply to: How can I add a bit of space under the menu #5463
    acmethemes
    Keymaster

    Hello dario80,

    Thank you for using our theme SuperMag.
    You can use the follow CSS in the custom CSS of the theme ( https://doc.acmethemes.com/supermag/#HowtoaddcustomCSS )

    .content-wrapper {
        padding-top: 30px;
    }

    You can change 30px above whatever value you like.

    Best Regards,
    AcmeThemes

    in reply to: Related posts #5466
    acmethemes
    Keymaster

    Hello mstudio,

    In our theme SuperMag the metadata like category, date and author can be disable using child theme or some Custom CSS. You can try it by creating Child Theme https://codex.wordpress.org/Child_Themes.

    If you are interested in premium theme, it has one click option to enable/disable each and every metadata like date, author, category etc. You can check our pro theme here http://www.acmethemes.com/themes/supermagpro/

    Best Regards,
    AcmeThemes

    in reply to: Cant cope with short words at the start of first paragraph #5468
    acmethemes
    Keymaster

    Hello thaigerweb,

    Yes we understand your issue, Please add following CSS in Custom CSS :

    @media (max-width: 1229px) {
    	.single .single-feat {
    		float: none;
    		padding: 0;
    		text-align: center;
    		width: 100%;
    	}
    }

    Let us know if this solve your problem.

    Best Regards
    AcmeThemes

    in reply to: Problem with image sizes #5473
    acmethemes
    Keymaster

    Hello djordje,

    Thank your for your feedback.

    Please follow the instruction given in below link:

    SuperMag

    Hope this will help you.

    Best Regards,
    AcmeThemes

    in reply to: "You Are Here" Troubles #5164
    acmethemes
    Keymaster

    Hello nicolecoscio,

    Its good to know your previous issues solved.
    This plugin do not mess up your image, its only work is to crop images to predefined sizes http://i2.wp.com/www.doc.acmethemes.com/wp-content/uploads/2016/01/media.png.
    If you afraid to do that in live site, you can try in local or dev site.

    Best Regards
    AcmeThemes

    in reply to: I want to change google fonts #5482
    acmethemes
    Keymaster

    Thank you for your feedback. If you want to know anything more please let us know.
    Best Regards,
    AcmeThemes

    in reply to: I want to change google fonts #5484
    acmethemes
    Keymaster

    Hello klatzer,

    Through the custom CSS only you cannot change google fonts. For changing google fonts you need to first enqueue google fonts, then you need to add CSS to use that google fonts.
    First crate child theme https://codex.wordpress.org/Child_Themes and enqueue google fonts by following code in functions.php. (Please enqueue google fonts of your choice )

    /**
     * Enqueue google fonts
     */
    function supermag_scripts() {
        /*google font*/
        wp_enqueue_style( 'supermag-googleapis', '//fonts.googleapis.com/css?family=Oswald:300,400,700|Roboto:300italic,400,500,700', array(), '1.0.1' );
    }
    add_action( 'wp_enqueue_scripts', 'supermag_scripts' );

    now in style.css add following code:

    body {
       font-family: 'Roboto', sans-serif;
    } 

    Please replace example google font with google font of your choice.
    We hope this will solve your problem.

    If you are interested in premium theme, it has one click option to change google fonts and there are 100+ google fonts

    Best Regards,
    AcmeThemes

    in reply to: Social options – Instagram? #5169
    acmethemes
    Keymaster

    Hello Karl,
    Thank you for your feedback.
    We believe that Twitter, Facebook and YouTube are most popular social networks now, so we provided these three social links in our free theme.
    Instagram and other social links are in pro theme http://www.acmethemes.com/themes/supermagpro/.

    Best regards,
    AcmeThemes

    in reply to: Change the font #5171
    acmethemes
    Keymaster

    Hello Karl,

    In the free theme there is no google fonts options. You can change fonts either by Custom CSS or by using child theme.
    Pro theme have 100 + google fonts you can choose.

    Best Regards,
    AcmeThemes

    in reply to: "You Are Here" Troubles #5167
    acmethemes
    Keymaster

    Hello nicolecoscio,

    Thank you for using our theme.
    Here are answers of your queries:

    • The first post is sticky post, you can create sticky post by clicking Quick Edit and check Make this post sticky in post list at backend or while adding/editing post from the Publish box at the top right
    • Please view the docs here https://doc.acmethemes.com/supermag/#SinglePostOptions, we think you are talking about Breadcrumb

    We hope this will solve your problems.

    Best Regards
    AcmeThemes

Viewing 15 posts - 106 through 120 (of 167 total)