Okay
  Public Ticket #2607548
Footer Images going crazy
Closed

Comments

  • andekris96 started the conversation

    Recently my footer images went crazy.

    I made a 3 column footer in Salient and then proceeded to add the content under Appearance > Widgets. 
    It is regular text boxes with image media inside.

    Now the images are larger and all over the website - please help.

  •  2,963
  •  8,849
    Tahir replied

    Hey Again,

    Since you are using SVG images Custom CSS would be needed to control the image sizes. 

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

    .textwidget img[src*="svg"] {
        max-width: 20px !important;
    }
    .textwidget img[src*="Logo"] {
        max-width: 150px !important;
    }

    Thanks


    ThemeNectar Support Team