-
AuthorPosts
-
June 30, 2014 at 4:28 pm #285257
Hello Kriesi support,
Website: http://bardactest.dreamhosters.comI 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!
-JulianJune 30, 2014 at 6:21 pm #285322Also 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!
June 30, 2014 at 6:58 pm #285331Sorry, 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?
July 1, 2014 at 2:26 am #285499Hey!
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,
IsmaelJuly 1, 2014 at 4:49 pm #285790Ismael,
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!
July 1, 2014 at 5:35 pm #285813Randomly, 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.
July 1, 2014 at 6:13 pm #285823Hey!
Please add following code to Quick CSS
.single_toggle * { border-color: black; }
Regards,
YigitJuly 1, 2014 at 7:19 pm #285847Thanks for the response Yigit! Unfortunately, it did not work! Any other suggestions?
July 1, 2014 at 7:22 pm #285850Hey!
Code is currently not being applied. Please try adding !important rule as following
.single_toggle * { border-color: black !important; }
Cheers!
YigitJuly 1, 2014 at 7:24 pm #285852That did it – perfect! Thanks so much.
July 1, 2014 at 7:25 pm #285855 -
AuthorPosts
- The topic ‘Some help with accordion toggles’ is closed to new replies.