Okay
  Public Ticket #2596708
Footer <img>
Closed

Comments

  •  1
    Stefano started the conversation

    Hi, I can't find a way to align or resize images in the footer widgets using custom html, any advice?

    My goal is to simply put SG and WP logos in line with text.

  •  8,849
    Tahir replied

    Hey Metanolo ,

    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):

    div#footer-widgets img {
        width: 20px;
        margin-bottom: 0px;
    }

    Thanks


    ThemeNectar Support Team 

  •  1
    Stefano replied

    Thanks a lot Tahir, that was super fast!

  •  1
    Stefano replied

    I'll take the chance for another quick question, is there a CSS tag to control single footer columns?

    I'm thinking as example at #footer3, so I can then set text-align: right; for footer column 3 only.

  •  8,849
    Tahir replied

    Hey Again,

    You can use the Text Widget ID: 

    7585745275.pngClick To Open Larger Image.

    Thanks


    ThemeNectar Support Team 

  •  1
    Stefano replied

    This is my first time building a site and writing html, so it took me a while to figure out how to do it. I did add to the custom CSS these lines:

    #custom_html-2 div {
        text-align:right;
    }
    #custom_html-3 div {
        text-align:right;
    }

    It worked, so all good! Thanks again and the ticket may be closed.