• Resolved toscal120

    (@toscal120)


    Hi
    How can I put the text aligned to the center with the social buttons in the bar of copyright?
    Any solutions with css works for me.
    Thanks

    • This topic was modified 7 years, 4 months ago by toscal120.
Viewing 9 replies - 16 through 24 (of 24 total)
  • Theme Author Tom

    (@edge22)

    Ah, I think I understand.

    So follow what I did in my post above, then add this CSS:

    .inside-site-info {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-bar-align-center .footer-bar {
        margin-bottom: 0;
    }

    That will give you this: http://prntscr.com/kls0p1

    Thread Starter toscal120

    (@toscal120)

    Yeahhh at last
    But sorry
    how can I put the copyright and contact at left, not in the right.
    If it is possible, if it don’t give the same thing.
    Thanks for you patience. ๐Ÿ˜‰

    • This reply was modified 7 years, 4 months ago by toscal120.
    • This reply was modified 7 years, 4 months ago by toscal120.
    • This reply was modified 7 years, 4 months ago by toscal120.
    Theme Author Tom

    (@edge22)

    Try adjusting your CSS to this:

    .inside-site-info {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-bar-align-center .footer-bar {
        margin-bottom: 0;
        order: 1;
        margin-left: 20px;
    }
    Thread Starter toscal120

    (@toscal120)

    No ๐Ÿ™ not workin still right. I dont know if it’s because I have this code in adicional CSS:
    .fixed-slider-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    }

    .site-branding,
    .site-logo,
    .header-widget {
    z-index: 2;
    position: relative;
    }

    .site-header {
    overflow: hidden;
    }

    .metaslider .theme-default .nivoSlider,
    .metaslider .theme-default .nivoSlider img {
    height: 100%;
    }

    .sidebar .widget {
    text-align: center;

    }
    .sidebar .widget {
    image-orientation: auto;
    }

    Theme Author Tom

    (@edge22)

    Hmm, don’t see anything wrong with that CSS.

    Here’s what I’m seeing with the CSS I provided above: http://prntscr.com/klsrzj

    Unfortunately I’d need to actually see your website to debug why it’s not working.

    Thread Starter toscal120

    (@toscal120)

    Ok
    When I published it I spend the link to you
    aditional CSS
    .fixed-slider-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    }

    .site-branding,
    .site-logo,
    .header-widget {
    z-index: 2;
    position: relative;
    }

    .site-header {
    overflow: hidden;
    }

    .metaslider .theme-default .nivoSlider,
    .metaslider .theme-default .nivoSlider img {
    height: 100%;
    }

    .sidebar .widget {
    text-align: center;

    }
    .sidebar .widget {
    image-orientation: auto;
    }
    .inside-site-info {
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .footer-bar-align-center .footer-bar {
    margin-bottom: 0;
    order: 1;
    margin-left: 20px;
    }

    IN Simple CSS
    body {
    background-color: #f1c40f;
    -webkit-animation: random 12s infinite;
    animation: random 12s infinite;
    }
    @keyframes random {
    0%, 100% {
    background-color: #E6FEE3;
    }
    45% {
    background-color: #ffcccc;
    }
    75% {
    background-color: #a9a2ad;
    }

    and
    lightweight Social icons in footer page
    lightweight Social icons in header page
    Easy facebook likebox and one html for twitter in lateral right bar
    No more
    Thanks for all

    • This reply was modified 7 years, 4 months ago by toscal120.
    Theme Author Tom

    (@edge22)

    Sounds good – let me know when the URL is available ๐Ÿ™‚

    Thread Starter toscal120

    (@toscal120)

    Solved!!!!!
    in alignment in โ€œCustomize > Layout > Footerโ€ I was put right in there I’ve change to center and now all it’s ok.
    Thanks

    Theme Author Tom

    (@edge22)

    Awesome! Glad I could help ๐Ÿ™‚

Viewing 9 replies - 16 through 24 (of 24 total)

The topic ‘center text in copyright bar’ is closed to new replies.