🏠
Calcumate Support
🏠
Calcumate Support
  • Ready to get started?
    • Plan inclusions and pricing
  • CALCULATOR CUSTOMIZATION
    • Step 1 - Initial set-up
      • Call to action URL
      • Call to action (advanced settings)
    • Step 2 - Adding unit sizes
    • Step 3 - Categories
    • Step 4 - Presets
    • Step 5 - Design
    • Step 6 - Details
    • Step 7 - Publish to your website
  • Frequently Asked Questions
    • Embedding with iframes
    • Domain mismatch error
    • Where can I find my invoices?
    • Update account details
    • Logging into your dashboard
    • Set up multiple calculators fast
    • How do I position/style the geo location widget?
    • Content Security Policy (CSP)
    • How do I add Calcumate to Wix / Shopify / similar CMS?
  • DRIVING CONVERSIONS AND EFFICIENCY WITH LEAD CAPTURE
    • Lead capture overview
    • Lead data that can be captured
    • Setting up lead capture
  • CALCULATOR DATA EXTRACTION
    • Method 1: URL GET Parameters
    • Method 2: Subscribe to the Calculator event
  • FILTERING TO AVAILABLE UNITS
    • Filtering To Available Units
  • Resources
    • Getting support
    • Security and privacy
    • Terms and conditions of service
Powered by GitBook
On this page

Was this helpful?

  1. Frequently Asked Questions

How do I position/style the geo location widget?

PreviousSet up multiple calculators fastNextContent Security Policy (CSP)

Last updated 6 months ago

Was this helpful?

[These instructions are under development]

Example code to reposition the geo location widget:

Pull location dialof top-right: .select-locations-wrap { right: 0px!important; //To create offset from right side in 15 px: right: 15px; left: unset;//reset default left position

}

Pull it top-left: .select-locations-wrap { right: unset; //reset property left: 15px!important; margin-left: unset; // reset styles for centering of block } Pull it bottom-left: .select-locations-wrap { right: unset; left: 15px!important;// or any value margin-left: unset; top: unset; bottom: 15px!important; or any value Pull it bottom-right: .select-locations-wrap { right: 15px!important; left: unset; margin-left: unset; top: unset; bottom: 15px!important; or any value } Example code to change the style of the geo location widget (you can use any CSS style): Change the style of the geo location widget .select-locations-wrap { //change background color to red background-color: red; } .select-locations-wrap * { //change font size font-size: 15px!important; } .select-locations-wrap * { //change font family font-family: 'Roboto'; }

A note about the use of "!important":

Sometimes the browswer will ignore some styles, because there are more important styles for that specific element. In this case, the use of "!important" is often an easy solution to force the browser to use the style that you require. More information here:

https://www.w3.org/Style/Examples/007/center.en.html
https://www.w3schools.com/css/css_important.asp