Rock Gym Pro (RGP) widgets are typically embedded in Webflow using iframe elements, which limit direct styling customizations. However, certain adjustments can be made depending on the level of access you have.
- Limited Styling via Webflow: Since RGP widgets are embedded iframes, Webflow's Designer styles (CSS) won’t affect their content.
- Inline CSS in RGP Settings: Some RGP widgets allow basic customization via their settings panel, where you may define colors, fonts, or spacing.
- Custom CSS with Parent Selectors: You can apply styles to the outer wrapper of the iframe, such as setting
max-width
, padding
, or border-radius
.
2. Adjusting Alignment in Webflow
- Wrapper Div: Place the iframe inside a Webflow div block and use flexbox or grid for alignment.
- Custom Width & Height: Set the iframe's width in % to ensure responsiveness.
3. Advanced Styling with JavaScript
Since iframe content is isolated, direct CSS edits won’t apply. However, you can:
- Use custom JavaScript (if RGP allows) to modify styles within the iframe.
- Inject CSS via RGP Admin Panel (if applicable).
Summary
You can’t directly style the contents of RGP widgets in Webflow due to iframe limitations. However, you can modify the container styling within Webflow and explore customization options within the RGP admin settings. If deeper customization is needed, check if RGP provides access to custom CSS or API solutions.