Okay
  Public Ticket #1018664
Copyright Footer and Navigation
Closed

Comments

  • Shamim started the conversation

    Hello, I had three questions...

    1. I want to align the copyright footer text to the right. This is normally where the social media icons would go, but I don't plan on putting them there. How do I go upon this?

    2. How do I remove the thin line on the side navigation?

    3. Is there a way to decrease the space the side navigation takes up?

    Best Regards,

    Shamim

  •  8,997
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    /* Algin copyright to right  */
    #footer-outer #copyright p {
        text-align: right !important
    }
    #footer-outer #copyright .col.span_5 {
        width: 100% !important;
    }
    @media only screen and (min-width: 1001px) {
        /*remove border */ 
        #header-outer[data-format="left-header"] {
            border-right: none !important;
        }
        /* reduce naviagtion width */
        body[data-header-format="left-header"] #ajax-content-wrap {
            margin-left: 205px;
        }
        /*      margin left and width values should be same  */
        #header-outer[data-format="left-header"] {
            width: 205px;
        }
    }

    Thanks


    ThemeNectar Support Team