Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #866736

    Smarticle
    Participant

    [please find page access details at the bottom]

    How can I remove the gallery icon on the Portfolio page:

    http://improvinglives.wpengine.com/gallery/jp-event/

    Furthermore, how can I switch the sidebar content and the main content around? Basically, I’d like the Portfolio layout to behave more like a post layout, with the feature image appearing in the sidebar and the Envira gallery itself appearing in the main content area.

    Then, on the following pages, I’d like the [top of the content to the underside of the grey title] to be equal the distance that is [the underside of the navbar to top of grey title]…

    which on this page, this page and this page (all category index/feeds) is the thin grey line, and on the Portfolio index, plus the Portfolio posts is the top of the image(s)

    How can I remove the left/right arrows from the posts?

    http://improvinglives.wpengine.com/freezing-occupational-therapy-training-places-wales-puts-patients-risk/

    How can I ‘brighten’ the general text in the footer? I’ve worked out how to control the footer links, the News piece titles and the widget titles, it seems, but how do I increase the contrast of the body text, starting with “The College of Occupational Therapists Limited…” and the copyright line?

    You’ll need these details to access the site:

    http://improvinglives.wpengine.com/
    Username: demo
    Password: C0T1mpr0v1ng

    #867265

    Christian
    Moderator

    Hey there,

    For the Gallery icon and left/right arrows, please add the code below in your Appearance > Customize > Custom > CSS.

    .entry-top-navigation, .x-nav-articles {
        display: none;
    }

    For the Footer font color, add the code

    .widget, .x-colophon.bottom .x-colophon-content, .x-colophon.bottom .x-nav li a {
        color: rgba(255,255,255,0.65);
    }
    
    .widget.widget_recent_entries li .post-date {
        opacity: 0.975;
    }

    The Portfolio layout customization request would require drastic custom development which regretfully falls outside the scope of our support.

    Thanks.

    #867784

    Smarticle
    Participant

    OK, no problem with the unsupported development stuff. It’s not the end of the world. I can stick with the status quo or implement a workaround.

    Thanks for the above styling code. That all worked. Got a couple more tweaks I’d like to add…

    How can I change the text in the widget titles (in those grey boxes) from uppercase to standard sentence case?

    (on http://improvinglives.wpengine.com/category/news-and-updates/ for example)

    And I’d also like to play around with the order of the copyright, footer menu and social icons. I think putting the social icons at the top makes most sense, so what code is required for that? If you can provide the code so I can kinda trial and error the order, even better.

    Cheers for your help with this btw. Very much appreciated.

    N.B. Same access details (to the site) as in the original post.

    #868662

    Rupok
    Member

    Hi there,

    Thanks for writing back.

    #1. To change the text-transform, you can use :

    .x-main .h-widget, .x-sidebar .h-widget {
      text-transform: none;
    }

    #2. To re-arrange the position of footer contents, you can use :

    .x-colophon.bottom .x-social-global {
      bottom: 100px;
      left: 0;
      margin: 0;
      position: absolute;
      right: 0;
    }
    
    .x-colophon.bottom .x-colophon-content {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
    }

    Hope this helps.

    Cheers!