Topic Resolution: Resolved
  • Closed
  • Licia Florio
    Spectator
    May 7, 2015 at 11:07 pm #17378

    Hi,

    I’ve created my website (aarc-project.eu) using the evolve+ theme. The theme is nice but I’m a bit disappointed with the footer. I though that the premium version would give me more options for the footer and the pages, whereas it seems to add more features to the slides. The only way to add additional info seems to be via the widgets, at least that’s my take, which IMO do not look very nice.

    I’ve finally managed to create my own CSS (I’m sure it’s not according to the book but it does the job) for the things I’d like to show in the footer, but I cannot find a way to have the social links now in the header in the footer. I’d like to have the social links and the contact both in the footer.

    Also is there a way to change the colour to the footer? I’d like to to be darker.

    Any help would be appreciated.

    Thanks,
    Licia

    Roman
    Spectator
    Posts: 3147
    May 8, 2015 at 9:17 am #17380

    For now the contact info and the social links can be implemented through the footer widgets area. To change the footer color you could use a Custom CSS:

    .footer {
    background:#666;
    }

    modify per your needs. We will add the custom color and background for the footer in the next update

    Licia Florio
    Spectator
    Posts: 1
    May 8, 2015 at 3:52 pm #17390

    Thanks for your answer! Much appreciated. I may have found a way to ‘reproduce’ the widget code in the footer so I may use that. The reason why I don’t want to use the widget is that it looks like a patch attached and I don’t like it.

    Cheers,
    Licia

    Roman
    Spectator
    Posts: 3147
    May 8, 2015 at 4:15 pm #17392

    may I see the website with the current results?

    Carlos
    Spectator
    Posts: 10
    May 25, 2015 at 2:36 am #17736

    Can you share your solution for getting rid of the ugly looking boxes in the footer please? I completely agree with you, and think the footer boxes are the only thing that degrades this otherwise great theme. Thanks!

    Roman
    Spectator
    Posts: 3147
    May 25, 2015 at 3:06 pm #17752

    @ Carlos…if you wish to disabled the footer widgets you can do so in the Appearance -> Theme Options -> Number of widget cols in footer and select no column option

    Carlos
    Spectator
    Posts: 10
    May 25, 2015 at 8:26 pm #17757

    @roman I know how to enable and disable the different widgets/columns in the footer. I need to use them, my problem is that I don’t want that goofy white box or border around the widget container in the footer. I just need the container to be transparent with no border. I’ve seen several comments here discussing how people do not like the way the footer looks with those containers.

    Roman
    Spectator
    Posts: 3147
    May 26, 2015 at 4:40 am #17760

    globally it can be disabled in Theme Options -> Styling -> Disable Widget Background , but if you wish to disable it only for footer widgets, will need to use a Custom CSS, for example:

    .footer .widget-content {
    background: none;
    border: 0;
    box-shadow: none;
    }

    .footer .widget::after {
    background: none;
    }

    Carlos
    Spectator
    Posts: 10
    May 28, 2015 at 3:50 am #17796

    Thanks so much Roman! Footer looks awesome now. One last question. I managed to change the footer font color but I’d like to have the titles in a different color (#ff9900). Can you please help?
    Here’s the standing footer which is so much better than with the weird boxes around the containers: http://www.caemarketing.com/

    Denzel Chia
    Moderator
    Posts: 2672
    May 28, 2015 at 6:02 am #17797

    Hi,

    Sorry to interrupt.

    I assume the following screenshot is what you want to achieve.
    http://prntscr.com/7a9itn

    If this is what you want to achieve, Please kindly add the following codes in your Theme Options -> Custom CSS

    .footer .widget-title{
    color: #ff9900 !important;
    }

    Thanks!
    Denzel

    Carlos
    Spectator
    Posts: 10
    May 28, 2015 at 12:17 pm #17803

    Denzel, that is PERFECT! Thank you!