Forum Replies Created

Viewing 15 posts - 136 through 150 (of 277 total)
  • Author
    Posts
  • in reply to: Navigation States #25662
    responsive-muse
    Keymaster

    Check that in your State Panel all 4 states (Normal, rollover, mouse down and active) are the same for all the sections. If Clients is “active” it might be because you have applied the same color in “normal state” than “active state”.

    in reply to: Mail Chimp Widget Not Submitting Data to Client list #24555
    responsive-muse
    Keymaster

    Hi

    Here is a screenshot that proofs that the widget works in your page after changing breakpoints as we told you previously.

    mailchimp submit

    We have sent you our .muse file with the changes. If you do not touch anything it should work for you too.

    Anyway, this is not a normal Muse behavior. Until 2017.1 is totally fixed, we do not recommend to use it.

    Kind regards.

    in reply to: Mail Chimp Widget Not Submitting Data to Client list #24396
    responsive-muse
    Keymaster

    You should only change the page that contains the widget and the bug will disappear

    in reply to: Mail Chimp Widget Not Submitting Data to Client list #24380
    responsive-muse
    Keymaster

    Hi Christian,

    Our developers have been inspecting your website and we found a weird bug in Adobe Muse 2017.1 release.
    In your site, when you combine fixed and fluid breakpoints, when exporting the page Muse is outputting the widget code twice. That is the reason that makes the widget break and this probably will happen with any other third party widgets.
    Please check the current screenshot where we changed all the fluid breakpoints to fixed, that solved your problem and made the widget work ok.

    Adobe Muse 2017.1 bug

    We are not sure if Adobe will fix this soon, so while waiting, you can use previous workaround or downgrade Muse version.

    in reply to: password protect #23763
    responsive-muse
    Keymaster

    Hi Trevor!

    This custom CSS code should do the work. You can change the img URL to your own URL.

    <style>
    #overlaypass { 
    	background: url(http://i.imgur.com/hnabDhX.jpg);
        background-size: cover;
    	}
    </style>

    You can paste custom CSS by either using Object -> Insert HTML or putting it in the tag by going to the Metadata tab of Page Properties (Page -> Page Properties)

    change background widget

    in reply to: Exlude folders from search #22797
    responsive-muse
    Keymaster

    That’s great! thank you 🙂

    in reply to: Exlude folders from search #22783
    responsive-muse
    Keymaster

    Hi Mauricio!

    You can exclude whole folders doing some edits in scan.php

    It should be possible doing some code changes in scan.php

    You can try to change around line 24:
    
    if ((strpos($dir, 'phone') !== false)||(strpos($dir, 'tablet') !== false)) {
    
    For this line:
    
    if ((strpos($dir, 'phone') !== false)||(strpos($dir, 'tablet') !== false)||(strpos($dir, 'myfolder1') !== false)||(strpos($dir, 'myfolder2') !== false)||(strpos($dir, 'myfolder3') !== false)) {
    
    And replace myfolder1, myfolder2 and myfolder3 for the folder names you want to exclude.
    in reply to: Cookie Policy Popup Free – Pin on top of the screen #22781
    responsive-muse
    Keymaster

    We were looking at your site and your best choice is to move the OK button to the left pasting this code in PAGE – PAGE PROPERTIES – METADATA – HTML FOR

    <style>
    #popup-cookie-contenedor a.close 
    {
    float: left!important;
    } 
    </style>

    in reply to: password protect #22155
    responsive-muse
    Keymaster

    Hi Emilio!

    You can change it using this code. Change color values and opacity level as you want. The opacity level describes the transparency level, where 1 is not transparent at all and 0 is completely transparent.

    <style>
    #overlaypass {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff !important;
        opacity: 0.9 !important;
        z-index: 9990000;
        text-align: center;
    }
        form {
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    </style>
    in reply to: Unable to generate Facebook token #22032
    responsive-muse
    Keymaster

    That error usually appears when values have not been placed correctly.
    A blank space or a missing character can make it not work so you should be careful when you replace your own values.
    A common mistake is not deleting “{” and “}” in “{app-id}” and “{app-secret}”
    So the URL to generate the token should be:

    https://graph.facebook.com/oauth/access_token?client_id=XXXXXXXXXXXXXX&client_secret=XXXXXXXXXXXX&grant_type=client_credentials

    in reply to: this page says error getting results #21654
    responsive-muse
    Keymaster

    Thanks for your reply!

    I’ll pass this info to the support team.

    You should have a reply from them in your inbox.

    Thank you!

    in reply to: this page says error getting results #21643
    responsive-muse
    Keymaster

    Hi Tyre!

    Thanks for your purchase.

    That problem usually means a problem in the PHP setup (old PHP versions, wrong file path, etc)

    My colleagues tell me you also sent us a support ticket, we will reply you by email.

    Kind regards.

    in reply to: background color #21642
    responsive-muse
    Keymaster

    Hi David!

    Since this is a slightly old widget, it does not support multiple widgets in same page.

    Probably your both widget styles were in conflict.

    We plan to update it in future to allow it, we will announce when done.

    Thanks a lot for your feeedback!

    in reply to: Changing background Color #21554
    responsive-muse
    Keymaster

    Hi Jeanette!

    Thanks for your purchase.

    Since there is two background colors (even/odd) we did not add background color settings, but you can easily achieve this with a little CSS snippet.

    You can change both colors using this custom CSS code. Just replace f9f9f9 and ffffff for the HEX colors you would like to use.

    <style>
    table.dataTable.display tbody tr.odd {
        background-color: #f9f9f9!important;
    }
    table.dataTable tbody tr {
        background-color: #ffffff!important;
    }
    </style>

    You can paste custom CSS by either using Object -> Insert HTML or putting it in the tag by going to the Metadata tab of Page Properties (Page -> Page Properties).

    I hope it helps!

    Kind regards.

    in reply to: Stuck in state of "Submitting…" #21384
    responsive-muse
    Keymaster

    Hello Tinashe.

    We have checked your site and it seems there is a typo in your mailchimp URL

    You missed a “m” in first part of URL, it should be list-manage not list-anage.

    Kind regards.

Viewing 15 posts - 136 through 150 (of 277 total)
Scroll to Top