CMS Development

ErinK
Participant

Need image/logo updated

SOLVE

Hello Community: I need help with this page: https://www.omniresources.com/-temporary-slug-070cf8ce-53c3-45ac-8eb4-6339cbcd928a?hs_preview=GCWHBf...

 

I either need to move the logo to the right or somehow adjust the image so that the logo isnt on top of it. Anyone have any suggestions???? Thanks in advance.

1 Accepted solution
tjoyce
Solution
Recognized Expert | Elite Partner
Recognized Expert | Elite Partner

Need image/logo updated

SOLVE

@ErinK

You could try dropping it into the very bottom of the CSS file.

Also, Yes, it would effect other pages but the following code should not disturb other pages.

@media screen and (min-width:1200px){
  .hs-content-id-5942003546 .banner-inner img{
        position: absolute;
        top: 20%;
        right: 16%;
  }
}

View solution in original post

4 Replies 4
MFrankJohnson
Thought Leader

Need image/logo updated

SOLVE

_hubspot-button-accept-as-solution-gif-v00.gif

Help other HubSpot searchers find this post by accepting the 'solution' (HubSpot word).

 

 

 


hubspot-solutions-signature-mfrankjohnson-v03.png

www.MFrankJohnson.com

 

Note: Please search for recent posts as HubSpot evolves to be the #1 CRM platform of choice world-wide.

 

Hope that helps.

 

Be well,
Frank


www.mfrankjohnson.com
tjoyce
Recognized Expert | Elite Partner
Recognized Expert | Elite Partner

Need image/logo updated

SOLVE

@ErinK - You could try moving it to the right by dropping this css into your CSS file "advisors.css":

@media screen and (min-width:1200px){
  .banner-inner img{
        position: absolute;
        top: 20%;
        right: 16%;
  }
}

If this answer helped, please, mark as solved 😄


tim@belch.io | forms.belch.io | Design your own Beautiful HubSpot Forms; No coding necessary.

 

Drop by and say Hi to me on slack.

ErinK
Participant

Need image/logo updated

SOLVE

Hi @tjoyce

 

Where in the CSS would I put that? Will that affect any other pages??

tjoyce
Solution
Recognized Expert | Elite Partner
Recognized Expert | Elite Partner

Need image/logo updated

SOLVE

@ErinK

You could try dropping it into the very bottom of the CSS file.

Also, Yes, it would effect other pages but the following code should not disturb other pages.

@media screen and (min-width:1200px){
  .hs-content-id-5942003546 .banner-inner img{
        position: absolute;
        top: 20%;
        right: 16%;
  }
}