Okay
  Public Ticket #2579219
Modify Footer columns position
Closed

Comments

  • vvictorfotograf started the conversation

    Hello,

    Can you help me with the html code to move the column of service to the right in mirror like the Contact Us ? also the space between footer and copyright footer ( Also how can I make the copyright container smaller ? )


    Thank you!

  •  2,963
    Andrew replied

    Hi there,

    Please share a link to your website so that we see possible css to adjust that.

    Thanks.

  •   vvictorfotograf replied privately
  •  8,849
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    #footer-outer .col:last-child * {
        text-align: right !important;
    }
    @media only screen and (min-width: 1000px) {
        #footer-outer .row {
            padding: 75px 0 25px !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  • vvictorfotograf replied

    Hei Tahir,


    It worked, on desktop but on mobile it also on the right and I want it all the column from the footer to be on mobile all one under another


    Thanks

  •  8,849
    Tahir replied

    Hey Again, Hope you had a Positive Weekend, 

    Use this revised css which works only for desktop.


    @media only screen and (min-width: 1000px) {
        #footer-outer .col:last-child * {
            text-align: right !important;
        }
        #footer-outer .row {
            padding: 75px 0 25px !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  •   vvictorfotograf replied privately
  •  8,849
    Tahir replied

    Hey Again,

    If min-width is used the css is applied above 1000px screen size so its for Desktop only.

    Thanks 


    ThemeNectar Support Team