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?
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:
Go to your theme options page and choose the Advanced tab.
Scroll down to the Custom CSS box and add this:
@media only screen and (max-width: 767px) {
#TA_socialButtonBubbles114 {
position: absolute !important;
}
}