Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1412329

    Hi,

    I would like put the background color of the web in gradient 2 color with 45 degrees.
    Could you help me?

    Thanks advance,

    Antonio.

    #1412358

    Hey Antonio,

    Which element would you like to apply it to? Could you post a link to where we can see the element in question?

    Best regards,
    Rikard

    #1412359

    Hi Rikard,

    I would like in the hole background page.
    Thanks advance,

    Antonio

    #1412373

    Hi Antonio,

    You can use this CSS code to cover the whole page and add it in Enfold > General Styling Quick CSS, however since it is at the back of those content elements (like Color Section), you will need to make the content elements transparent:

    #top #wrap_all #main {
        background: blue;
        background: linear-gradient(45deg, blue 0%, black 100%);
    }

    Best regards,
    Nikko

    #1412403

    Hi Nikko,

    I have do that but do not works.

    #top #wrap_all #main {
    background: linear-gradient(45deg, #ff6d3e 0%, #2e09c1 100%);
    }

    all the background and pages are grey.

    Could you help me?

    Thanks advance,

    BR,

    Antonio.

    #1412422

    because the sections etc got their own background-color. Only if you set them to transparent – the #main background-color could be seen.

    #1412439

    Hi,

    Thanks for helping out @guenni007 :-)


    @95mc
    , the comment above applies to your site. If you have sections with background images and colours, then the styling you are applying to the main container will not show.

    Best regards,
    Rikard

    #1412723

    Hi all!

    I have put the sections empty and I can see it, even in empty pages.
    Could you help me?

    Many thanks!

    BR,

    Antonio.

    #1412737

    Hi,
    If you want all of your sections to be transparent to show your #main gradient color try this css:

    .main_color {
    	background-color: transparent;
    }

    but I’m not sure that you would want this on every section on your whole site, so instead try specifing the section you want this gradient color by adding a custom class to your color section like gradient and then use this css:

    .gradient {
    	background: linear-gradient(45deg,#2e09c1 0%,#ff6d3e 100%);
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1412943

    Hi Mike,

    Looks great! Many thanks

    BR,

    Antonio.

    #1412950

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Background color gradient’ is closed to new replies.