TripAdvisor widget

Support Area Forums Moonrise TripAdvisor widget

Viewing 3 posts - 1 through 3 (of 3 total)
URL to the page in question: http://http://dev.thalassaseafood.co.uk.gridhosted.co.uk/
  • Author
    Posts
  • #31317
    RecipeSocial
    Participant

    Hi Bill,

    I’ve had a TripAdvisor widget added to the top left on the header, but I’ve noticed it is not responsive or does not move with the social icons on the right of the header when scrolling. Is there a way to fix this? Would this be CSS or PHP or?

    Thanks,
    Christian.

    #31321
    Bill Robbins
    Moderator

    The widget is hard coded to use position: “fixed” which means it says in place as the other content on the page changes. You could try this to change that for smaller screens:

    1. Go to your theme options page and choose the Advanced tab.
    2. Scroll down to the Custom CSS box and add this:
      
      @media only screen and (max-width: 767px) {
      
      	#TA_socialButtonBubbles114 {
      		position: absolute !important;
      	}
      
      }
      
    3. Update your settings.

    Bill

    #31330
    RecipeSocial
    Participant

    Hi Bill,

    Thanks for the code, much appreciated 🙂

    Christian.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘TripAdvisor widget’ is closed to new replies.