Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1154006

    This is a follow question to my post #1153945:
    How can I adjust the timestamp to my site, https://bladeelectionresults.com/?
    On a tablet, the timestamp is partly under the logo. I want the timestamp to move to the right of the logo in the header area.

    I will dump the menu, if necessary.
    Thanks,
    Kfranck

    #1155250

    Hey Kurt,
    Sorry for the late reply and thanks for the login, I adjusted your css from this:

    p.update-time {
        width: 340px;
        margin: auto;
        font-size: 90%;
    }

    to this:

    @media only screen and (min-width: 767px) { 
    p.update-time {
        width: 300px;
        font-size: 90%;
        float: right;
    }
    }
    @media only screen and (max-width: 766px) { 
    p.update-time {
        width: 340px;
        margin: auto;
        font-size: 90%;
    }
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

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