Forum Replies Created

Viewing 20 posts - 921 through 940 (of 14,499 total)
  • Author
    Posts
  • in reply to: LOGO not responsive #156826
    Sakin
    Keymaster

    @maciejakubzawadzki: Yes, we didn’t wanted to adjust the logo as many times, users just want same logo in all the devices.

    To reduce the size of the logo in mobile devices, you can use the following css and adjust it as per your need. You can add css in “Appearance => Customize => Additional CSS” box. In the following css change the max-width as per your need.

    /* Size for logo in Mobile */
    .custom-logo {
        max-width: 180px;
    }
    
    /* Size for logo in bigger devices */
    @media screen and (min-width: 1024px) {
    	.custom-logo {
    	    max-width: 180px;
    	}
    }

    Regards,
    Sakin

    in reply to: Background Image #156825
    Sakin
    Keymaster

    Hello Jay,

    Sorry, we don’t have that option. But if you want to add video looping then you can add your video in Custom Header from “Appearance => Customize => Header Media” and then select video.

    Regards,
    Sakin

    in reply to: logo back ground color #156824
    Sakin
    Keymaster

    @Adwatimes: Sorry, I don’t get you exactly what are you trying to do it. So, can you send me your site URL and explain. For logo, you need to design it by yourself and then upload png image or transparent background so that it can match with your background automatically.

    in reply to: Which child – theme folder #153180
    Sakin
    Keymaster

    @marebos: All your files in child theme will be safe as the update doesn’t overwrite child theme. It only overwrites the original theme file. So, you can add it anywhere in your child theme.

    in reply to: Translate "next post", "previous post" #151800
    Sakin
    Keymaster

    @vraba: Ok I will send you email. I need to check in your site itself.

    in reply to: Translate "next post", "previous post" #151744
    Sakin
    Keymaster

    @vraba: I used your same language in theme and it’s working fine in my test site. That is why I am asking you about your “Site Language” in “Settings => General”, you have to select “Čeština” then only the translation will work.

    in reply to: Translate "next post", "previous post" #151708
    Sakin
    Keymaster

    @vraba: Send me your site URL so that I can see it. Also, if you WordPress setup in Czech. I mean what’s your setting at “Settings => General” and “Site Language”.

    Also, can you share me your cs_CZ.po file.

    in reply to: Translate "next post", "previous post" #151701
    Sakin
    Keymaster

    @vraba: You can download the the following file and replace it in “Parallax Frame Pro” theme languages folder. There is parallax-frame-pro.pot, cs_CZ.po and cs_CZ.mo file. After you replace that languages folder, go to that folder and open cs_CZ.po file with Poedit Software and add the translation of the text that you need.
    https://www.dropbox.com/s/8kqyugg9c1y8up9/Czech-languages.zip?dl=0

    Note: As you are replacing the core theme files, these files will be reverted back to original when you update the theme. So, it’s better for you to send us the file after you complete the translation and then we can add in theme file itself.

    in reply to: Modern menu background color tweaks #151682
    Sakin
    Keymaster

    @vavw: Cool,thanks for using Adonis pro theme. If you like our theme and support, then please support us by providing your valuable review and rating at https://wordpress.org/support/theme/adonis/reviews/#new-post

    in reply to: Displaying Logo but not Site Title #151681
    Sakin
    Keymaster

    @inksla: Welcome. If you like Divin Pro theme and our support, then please support us by providing your valuable review and rating at https://wordpress.org/support/theme/divin/reviews/#new-post

    in reply to: How to change default copyright shown in Footer? #151666
    Sakin
    Keymaster

    Sorry, supporting without URL is little confusing. So, I have to just imagine what you are doing and not.
    1. Modify footnote about copyright: You need to go to “Appearance => Customize => Theme Options => Footer Editor Options”
    2. To Disable Featured Content, go to “Appearance => Customize => Featured Content” and select “Disabled” in Enable on option.

    in reply to: Modern menu background color tweaks #151643
    Sakin
    Keymaster

    ok let me know when it’s live or you can show me your test site now. Once, I get your site URL, I will be able to give you custom css.

    in reply to: Modern menu background color tweaks #151641
    Sakin
    Keymaster

    I need your site url now to check in as the code works for me here. So, I need to check your site settings.

    in reply to: Modern menu background color tweaks #151633
    Sakin
    Keymaster

    Can you send me your site URL so that I can check in. Are you talking about Modern menu or classic menu. For classic menu sub-menu background color it’s as below:

    /* For Classic Menu Sub-menu background Color */
    .navigation-classic .main-navigation ul ul {
        background: rgba(0,0,0, 0.1);
    }
    /* For Classic Menu Sub-menu text Color */
    .navigation-classic .main-navigation ul ul a,
    .navigation-classic.absolute-header .main-navigation ul ul a {
        color: #fff;
    }

    So, send me your site URL so that I can check in which css is working and not.

    in reply to: How to change default copyright shown in Footer? #151596
    Sakin
    Keymaster

    @gmclark77: You can just login to your WordPress dashboard and then go to “Appearance => Themes => Add New => Upload Theme”, then click on “Browse…” and upload the zip file that you have downloaded. Finally click on “Active”. I will also send you email so that if you have any issue while installation then I can help you out.

    You can check out screencast about upgrading to pro theme at https://www.youtube.com/watch?v=gVvrbKJNfkE and theme instructions at https://catchthemes.com/theme-instructions/adonis/

    in reply to: Modern menu background color tweaks #151595
    Sakin
    Keymaster

    That css, should change the modern menu background and text color for main menu items and it’s sub-menu. But if you are trying to change the dropdown toggle button color, then you can add the following css:

    .dropdown-toggle,
    .dropdown-toggle:hover,
    .dropdown-toggle:focus {
    	color: #fff;
    }

    And if you want to give different color to sub-menu then you can add the following css:

    .navigation-modern .main-navigation .sub-menu a {
    	color: #fff;
    }
    in reply to: Modern menu background color tweaks #151580
    Sakin
    Keymaster

    Hi Victor,

    Thanks and if you like our theme and the support, then please post in your valuable review at https://wordpress.org/support/theme/adonis/reviews/#new-post. I would really appreciate it.

    Thanks a lot.

    in reply to: Modern menu background color tweaks #151578
    Sakin
    Keymaster

    Hi Victor,

    If you want to make it transparent then it’s the following css. Your color needs to be in rgba. IN the following css, color #fff is the color code fro menu text.

    .navigation-modern .main-navigation a {
        background: rgba(0,0,0, 0.1);
        color: #fff;
    }
    in reply to: Changing Title Size and Moving #151576
    Sakin
    Keymaster

    @coachnancyk: Yes, the css to change the font size of Site title is as below Just change the font size in the following css as per your need and then add it in “Appearance => Customize => Additional CSS”

    .site-title {
        font-size: 80px;
    }

    It’s not recommended to move the title to the bottom on header image. But if you really want to do that, then add the following css in “Appearance => Customize => Additional CSS” box:

    #masthead {
        min-height: 330px;
    }
    
    #site-branding {
        position: absolute;
        bottom: 0;
    }
    in reply to: How to change default copyright shown in Footer? #151575
    Sakin
    Keymaster

    @gmclark77: Hello Michael,

    Since, you are complete beginner. I recommend you to upgrade to Pro version, where you have simple option to edit footer via Footer Editor box at “Appearance => Customize => Theme Options => Footer Editor”. Anyone can change from here, it’s very simple.

Viewing 20 posts - 921 through 940 (of 14,499 total)