Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #1044917

    How can I center the Copyright Info and Footer Menue in the Mobile View and the Desctop View?

    #1044938

    Hi Mark

    Try this for the Copyright:

    #socket .copyright {
    float: center;
    }

    For the footer menu you can adjust it the same way.

    Cheers
    Michael

    #1044940

    Is that the right one for the footer menu?

    #socket .footer {
    float: center;
    }

    #1044948

    No, in your case that would be:

    #socket .menu {
    ...
    }
    #1044992

    Here is my Quick CSS. Unfortunately it does not work

    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link {
    display: block !important;
    }}
    @media only screen and (max-width: 767px) {
    .responsive #socket .copyright {
    float: center !important;
    }}
    @media only screen and (max-width: 767px) {
    .responsive #socket .menu {
    float: center !important;
    }}

    #1045018

    Hi Mark

    I suggest putting your copyright info as an individual link to the socket menu.
    Having that said it should be easier to align the menu in the middle than with two different elements like now.

    Cheers
    Michael

    #1045285

    Hi,

    Thanks for helping out @michaelH, did you get your problems solved @markmade? If not then please post a link to where we can see the actual elements.

    Best regards,
    Rikard

    #1045330

    OK, I did that now and in the Quick CCS it looks like this, but it still does not work. Please help

    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link {
    display: block !important;
    }}
    #socket .footer {
    float: center;
    }

    #1045340

    I would like to center the view of the copyright and es footer menu as follows and in the following order:

    Start | Impressum | Datenschutz
    © Copyright – Luister & Partner

    I would like this presentation both in the desktop and in the mobile version

    Here is the link to the website:

    • This reply was modified 5 years, 4 months ago by markmade.
    #1046573

    Hi,

    Please add the following:

    footer { width: 300px; }

    and that should be working properly for you :)

    Best regards,
    Basilis

    #1046773

    can you please send me the complete Quick CCS string, thank you.
    Or in other words, what do I have to enter completely in the Quick CCS?

    #1046828

    Info @michaelH: “center” is not a valid option for the float property

    #1046840

    Can someone help me please
    can you please send me the complete Quick CCS string, thank you.
    Or in other words, what do I have to enter completely in the Quick CCS?

    #1047526

    Hi markmade,

    Try using this css code:

    #socket .container {
        display: flex;
        flex-direction: column-reverse;
    }
    
    #socket .copyright, 
    #socket .sub_menu_socket {
        float: none;
        display: block;
        text-align: center;
    }
    
    #socket .sub_menu_socket li {
        display: inline-block;
        float: none;
    }

    Best regards,
    Nikko

    #1047609

    Hi Nikko,
    perfect thank you for the competent help. that’s exactly what I meant and wanted.
    I use the Enfold theme in all of my customer projects and am very satisfied with it. please continue

    #1048235

    Hi markmade,

    Glad that we’re able to help.
    Thanks for your kind words :)
    And thanks for using Enfold in your projects.
    Have a great day!

    Best regards,
    Nikko

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘Center Copyright Info and Footer Menu in Mobile View’ is closed to new replies.