Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #150938
    n.bely
    Participant

    Hello,

    Please help me fix the following issues:
    1. I want to change the background colour of the main body and footer for white.
    I tried to change the settings of the theme, but it changed only in some parts, while in other parts it remained grey.

    2. I’ve got the MENU in the mobile version. Question A: How can I change the language of it?
    Question B: How can I remove this MENU from the mobile version?

    website: redact.agency

    Thank you a lot!

    #150939
    n.bely
    Participant

    3. How to edit the footer text. I use the child theme…

    Thank you!

    #150965
    Sakin
    Keymaster

    @n.bely: Thanks for using Adonis Free theme.
    1. The color scheme and options are there only in Adonis Pro version. If you want to change that in Free version, then you need to change via “Additional CSS”. For this, you need to let us know your site URL and the color that you want to change to. Then, we can provide your CSS.
    2. For multi-language menu support, you need to user Pro version again and install plugin like WPML
    3. I see that you have already edit the footer in this free version. So, this looks solved. We would be happy if you keep the footer credit to us for providing free version. Also the there is Footer Editor in theme option in Pro version.

    #150970
    n.bely
    Participant

    Thank you for a quick response!
    Could you please tell me the CSS code to change the background color for WHITE
    and to remove the MENU from the mobile version. My website is http://redact.agency/
    Regards!

    #150985
    Sakin
    Keymaster

    @n-bely: That background color issue was due to your site origin plugin padding. So, you can add the following css in “Appearance => Customize => Additional CSS” box:

    .siteorigin-panels-stretch {
        background-color: #fff;
    }

    To hide mobile menu, just add the following css in “Appearance => Customize => Additional CSS” box:

    #primary-menu-wrapper {
        display: none;
    }
    #150992
    n.bely
    Participant

    Hello again!

    This css code below doesn’t change anything, unfortunately.
    Any other ideas?

    .siteorigin-panels-stretch {
    background-color: #fff;
    }

    Thank you in advance!

    #150999
    Sakin
    Keymaster

    Oh again that plugin is overwriting the css. So, I am adding important. Ok release the previous css with the following css:

    .siteorigin-panels-stretch {
        background-color: #fff !important;
    }
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Background colour, footer edit and menu language (in mobile version)’ is closed to new replies.