Tagged: ,

Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #769704

    Hi,

    I am trying to achieve a footer design: http://www.mws.ilc.sg/wp-content/uploads/2017/03/Footer-test.png

    Having some difficulty on how to achieve it as i can’t seem to figure out to do it.

    I have attached the test site link in the private content.

    Any help will be much appreciated!

    #769776

    Hey fairusd,

    You can change the footer settings in the enfold theme option -> footer layout.

    To edit the content, you have to go to the widget customization.
    You’ll find it on the left side under “appearance”.

    There you can place widgets inside your footer areas.

    Best regards,
    Jordan Shannon

    #769903

    Thanks Jordan!

    There’s quite a big vertical spacing in between the two footers.

    Any way for me to decrease it?

    #770106

    Hi,

    Add the following to quick css:

    #footer {
        padding: 0px 0px 0px 0px!important;
    }
    
    #footer .widget {
        margin: 10px 0 0px 0!important;
    }

    Let me know if this works for you.

    Best regards,
    Jordan Shannon

    #770306

    Wow Jordan you are one impressive guy!

    It works like a charm!

    One last request and i hope this is possible :)

    I want to add a website text link on bottom right of the footer as per the image attached.

    #770592

    Hi,

    Please try adding this to the end of the Copyright field in the theme options:

    <a href="http://yoursite.com/link" style="float:right;">Link text</a>

    Best regards,
    Rikard

    #770596

    Hi Rikard,

    Thanks! I tried it but the text doesn’t float to the right.

    #770700

    Hi,
    Try this in your socket:

    © Copyright 2017 Methodist Welfare Services <div class="push-right"><a href="http://www.fastartup.com">Design by FASTARTUP</a></div>

    Try this code in the General Styling > Quick CSS field:

    .push-right{
    position:absolute;
    right:20px;
    top:80%;
    transform:translateY(-50%);
    }
    @media only screen and (max-width:767px) {
    .push-right{
    position:relative;
    right:auto;
    transform:none;
    }}
    

    Adjust top & transform numbers to suit :)

    Best regards,
    Mike

    #770813

    Hi Mike,

    Thanks for the help! Really appreciate it.

    It works however, you could see that it got bumped to the next line.

    And how do i make the footer + socket text to be align left in MOBILE as well?

    Thank you!

    #770889

    Hi,

    Try to change this css code:

    .push-right{
    position:absolute;
    right:20px;
    top:80%;
    transform:translateY(-50%);
    }

    to this one:

    .push-right {
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
    }

    For making footer + socket to align text on left, try adding this code:

    #footer .widget * {
        text-align: left;
    }

    inside this:

    @media only screen and (max-width:767px) {

    Hope this helps :)

    Best regards,
    Nikko

    #770895

    Hi Nikko,

    Awesome thanks!

    Tried your codes but the Facebook text now is left align and the Design by FASTARTUP text overlaps the copyright text in mobile.

    #770899

    Hi,

    Let us know if you have any other questions or issues :)

    Best regards,
    John Torvik

    #770901

    Hey John,

    Still need assistance with the footer/socket CSS.

    #770927

    Hi,

    I am sorry about it.

    To fix it, just add this CSS at Enfold Theme Options > General Styling > Quick CSS

    
    @media screen and (max-width: 480px) {
      .push-right {
       position: absolute;
       right: -20px;
      }
    }
    
    

    Best regards,
    John Torvik

    #770944

    Hey John,

    Thanks!

    Possible to float the Facebook text to the right in desktop?

    Link attached.

    #770978

    Hi,

    You can float it to the right. This css code I gave you:

    #footer .widget * {
        text-align: left;
    }

    Should be inside the:

    @media only screen and (max-width:767px) {

    it should be something like this:

    @media only screen and (max-width:767px) {
      #footer .widget * {
        text-align: left;
      }
    }

    That should fix it :)

    Best regards,
    Nikko

    #771031

    Hi Nikko,

    I copied your CSS but still not able to have the desired outcome.

    #771388

    Hi,

    Just add this custom CSS code:

    
    #text-3 .textwidget {
    float: right !important;
    }
    

    Best regards,
    John Torvik

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