Some troubles with Enlightenment

Viewing 7 posts - 1 through 7 (of 7 total)
  • #22770
    Marziin111
    Participant

    Hello,

    I am just creating a homepage for a kind of childcare organization but got some troubles with the theme.

    Is it possible to add a footer navigation for privacy?

    When the page loads up, the full screen widget overlays the widget below. Is there a reason for that?

    The “News”-page looks slightly different to the others. The sidebar has moved more down, do you know why?

    The page is http://marmorwerk-horb.de

    Thank you for your help.

    Greetings
    Marcel

    • This topic was modified 7 years, 4 months ago by Marziin111.
    #22774
    Marziin111
    Participant

    EDIT1: I’ve added another sidebar to News site (blog) which is not shown at all on this site but on the others it is

    #22778
    Daniel Tara
    Keymaster

    To begin with, the images in your slider are way too big and this delays loading the content. Try compressing them more.

    The slide background image overflowing the rest of the content during page load can be fixed with this custom CSS:

    .flexslider .slides > li {
        position: relative;
    }

    The theme doesn’t support a footer navigation but you can add one in the footer sidebar.

    Apparently there are some CSS bugs in when displaying the blog in full screen mode with a sidebar. This CSS should fix it:

    @media (min-width: 992px) {
        .design-full-screen.layout-content-sidebar .hentry {
            margin: 0 70px 40px 0;
        }
    
        .design-full-screen .sidebar-primary.custom-sidebar {
            padding-top: 0;
            padding-bottom: 0;
        }
    }
    • This reply was modified 7 years, 4 months ago by Daniel Tara. Reason: fixed css typo
    #22783
    Marziin111
    Participant

    Hello,

    thanks for your reply,

    The overflow is fixed, thank you.

    Yeah I put it in the secondary footer.

    Unfortunately the CSS for the sidebar didn’t fix it. It is still further down than on the other sites.

    Thank you for your help.

    Greetz
    Marcel

    #22786
    Daniel Tara
    Keymaster

    I made a typo in the original code, here’s the updated CSS:

    @media (min-width: 992px) {
        .design-full-screen.layout-content-sidebar .hentry {
            margin: 0 70px 40px 0;
        }
    
        .design-full-screen .sidebar-primary.custom-sidebar {
            padding-top: 0;
            padding-bottom: 0;
        }
    }
    #22789
    Marziin111
    Participant

    Thank you.

    The next problem with the blog page is, that my costum footer sidebar is not displayed altough I activated it on the page itself. It is displayed on all the other pages.

    #22793
    Daniel Tara
    Keymaster

    Like I said in my previous post, editing any settings of the page that is set as blog will have no effect since that page is no longer queried once it’s set as blog. You’ll have to edit the sidebar locations for the “Blog” template.

Viewing 7 posts - 1 through 7 (of 7 total)

You must be logged in to reply to this topic.