Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #951585
    #951943

    Hey mcbaile,

    Unfortunately, it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Basilis

    #951966

    Ok that’s very surprising to here that there isn’t a bit of quick css to remove the logo or push it to the left as before 4.3 it was very easy to do. I’ll get my developers to do a hardcode adjustment to this then.

    #952261

    Hi,

    I’m not sure if this what you are looking to achieve, but if you want to hide the logo on the home page then you can try this in Quick CSS:

    .home #logo {
      display:none;
    }

    Best regards,
    Rikard

    #952294

    Thanks Rikard, but my developers had previously hardcoded into the child theme for the logo to not show on the home page.

    What I wanted was to know if there was quick css for hiding it on all pages OR moving it flush left. I’m confused why the logo’s don’t show flush left on this them as it just looks odd in 4.3 where as there was an easy fix on previous versions.

    I presumed there should be some easy way to just have it disappear site wide if you didn’t want it as the way it currently shows we’d be better off without it if the issue of alignment can’t be fixed.

    Thanks.

    #952295

    to 1) you must have set the rule yourself – you set the floating behavior to none !important – please try:
    (find the code and erase it )

    you set:

    .responsive .logo {
        width: 300px;
        height: 100px;
        margin: auto !important;
        float: left !important;
    }

    get rid of margin auto and change it to:

    .responsive .logo {
        float: left !important;
    }
    #952300

    Thanks, turns out that isn’t the issue and this QUICK CSS code solves the problem:

    /* logo flush to the left */

    @media only screen and (max-width: 767px) {
    span.logo, span.logo img {
    float:left !important;
    }}

    However, it only solves the issue on my development server which is an exact copy of the live, so live seems to be stuck with the same problem and looks like my developers have done something here which they’ll need to fix.

    Thanks for all your help on this guys.

    #952507

    Hi,

    Thanks for the feedback. If it’s working on your development site and the live site is updated then it should work there as well. Are you using any caching plugins? If so then please try to clear the cache from them to see if that helps.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.