Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #285257

    Hello Kriesi support,
    Website: http://bardactest.dreamhosters.com

    I am trying to modify the text within the accordion toggles so that there is much less padding on both the right and left sides of the bullets. Also, is there anyway to change the accordion border color and plus icon/box to black?

    Thanks in advance!
    -Julian

    #285322

    Also on the homepage – I have been using negative white space separators between homepage elements to bring them closer together. The only issue with this is that now items are clashing on the mobile site. Is there anyway to have the separators effect ONLY the desktop site? Or would the solution be to somehow reduce space in between homepage elements WITHOUT using negative white space?

    Any input would be greatly appreciated!

    #285331

    Sorry, last question! (I know I should probably have made a new thread). I temporarily disabled responsiveness to see what the desktop site would look like on a mobile browser. But now, after switching it back, mobile phones refuse to display the responsive/mobile view. What happened?

    #285499

    Hey!

    Thank you so much for using the theme!

    1.) Please use this on Quick CSS or custom.css to reduce the left and right padding and change the color of the toggle symbol:

    .toggle_content {
    padding: 12px 10px 11px 10px;
    }
    
    span.toggle_icon, span.toggle_icon > * {
    color: black !important;
    border-color: black !important;
    }

    2.) You can add a unique selector for each Avia Elements. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');
    

    Edit all hr elements with the negative white space. Add a custom css selector like “negative-hr” for example. Add this on Quick CSS or custom.css to hide them on mobile:

    @media only screen and (max-width: 989px) {
    .negative-hr {
    display: none;
    }
    }

    3.) Try to remove browser cache then reload the page.

    Best regards,
    Ismael

    #285790

    Ismael,

    Thanks for your response! So The decreasing padding within the toggles worked great, however, the boarders did not change color.

    I cleared the cache on my phone and even tested the website on multiple phones and the site is still not displaying as responsive. The “Responsive Layout active?” option is currently set to Active (Max width 1030 px), but there is no change. I have tried the other option as well.

    Thanks for the help!

    #285813

    Randomly, the phone is now back to displaying the correct resolution. Weird! So, no help needed there.

    If possible, I am still interested in changing the border color of my accordion toggles to black. Thanks!

    • This reply was modified 10 years, 4 months ago by FloppySocks.
    #285823

    Hey!

    Please add following code to Quick CSS

    .single_toggle * {
    border-color: black;
    }

    Regards,
    Yigit

    #285847

    Thanks for the response Yigit! Unfortunately, it did not work! Any other suggestions?

    #285850

    Hey!

    Code is currently not being applied. Please try adding !important rule as following

    .single_toggle * {
    border-color: black !important;
    }

    Cheers!
    Yigit

    #285852

    That did it – perfect! Thanks so much.

    #285855

    Hey!

    You are welcome, glad we could help :)

    Best regards,
    Yigit

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Some help with accordion toggles’ is closed to new replies.