Forum Replies Created
-
AuthorPosts
-
January 30, 2018 at 5:36 pm in reply to: Don't get Google Maps to work (API-problem, no solution in other threads) #905015
Hi Nikko,
sorry didn’t get notification of your almost immediate reply.Thank you. I already put the credentials of access in private section of URL in my first request.
But I have good news: Problem resolved!!!
I found this piece of code in function.php of childtheme – no idea who put it there or how it came there. I just cancelled this function and everything works fine.
function ava_googlemaps_apikey() {
$prefix = is_ssl() ? “https” : “http”;
wp_deregister_script(‘avia-google-maps-api’);
wp_register_script( ‘avia-google-maps-api’, $prefix.’://maps.google.com/maps/api/js?key=AIzaSyAidX34J-pkIHmOUFdVrt05MpzDHz-VZUk’, array(‘jquery’), ‘3’, true);
wp_enqueue_script(‘avia-google-maps-api’);
}
add_action(‘init’, ‘ava_googlemaps_apikey’);Thank you anyways for your help.
Problem resolved, I just forgot to put another two ‘ ‘.
The solution Josh proposed works fine!!
The link should look like this:
Click to open URLin new windowSorry for unnessessary question and thank you
April 29, 2015 at 12:20 pm in reply to: Text with bullets in Accordion within the Grid Row not working #436612Hi, I had the same problem and I resolved it with the following CSS Quick code:
.single_toggle ul { list-style-type: disc; }
to do the same thing to normal text boxes in row grids I found that this does the job:
.avia_textblock ul { list-style-type: disc; }
It workes fine for me, perhaps it works also for others.
April 29, 2015 at 10:42 am in reply to: Masonry Portfolio: Transparency to title background on mobile devices #436572Hi Andy,
waiting for your response in the meanwhile I tried to figure out how it could be done to change transparency of the title/excerpt banner on the bottom of each project in masonry gallery on mobile devices. I don’t have a clue about CSS but the following code works!.av-inner-masonry-content.site-background { opacity: 0.7 !important; }
It changes transparency of the title banners in masonry gallery to 0,7 on mobile devices with touch screens. If the CSS code used seem critical to you for other reasons, please let me know.
Thank you anyways for your help and for trying to find a solution. Your and Kriesi’s support in general is outstanding and really gives great value to your theme !!!!April 28, 2015 at 8:23 pm in reply to: Masonry Portfolio: Transparency to title background on mobile devices #436348This reply has been marked as private.April 27, 2015 at 11:32 am in reply to: Switch off tooltips when mouse over gallery or easy slider #435152Hi Yigit,
you gave great advice, your code does exactly what I wanted, the tooltips don’t show anymore on mouse over a linked image.
Great! Thank you very much for your precious help. Excellent support, !!!April 27, 2015 at 10:45 am in reply to: Masonry Portfolio: Transparency to title background on mobile devices #435131Hi Andy,
thanks for keeping up with this threat and for trying to help. I posted two screenshots
1. Masonry gallery on desktopbrowser with mouse : Title and excerpts showing with partial transparency on mouse over. http://imgur.com/LnFawMk
2. Masonry gallery on mobilebrowsers with touch: Title and excerpts showing always but with complete opacity covering the project image. http://imgur.com/K4uAByL
I want the title and excerpt showing on mobile devices with touch screens to be also semi transparent in order to show the project image underneath.
pageaddress: http://www.quickpartners.net/?page_id=121
I tried your CSS code but without desired result. When clicking on a gallery item, then title becomes transparent for a short moment just before leaving the page to go to cllicked portfolio item. On page load project title banners have opacity 100% instead of 70%.April 23, 2015 at 11:59 am in reply to: Masonry Portfolio: Transparency to title background on mobile devices #433387Hi Yigit, didn’t see your reply at once, sorry.
I inserted your CSS quick-code but no change of opacity of title/excerpt banners (I dont see opacity command in your code)
Perhaps we misunderstood each other.
For desktop browsers:
I changed opacity of title/excerpt banner in masonry gallery showing on mouse hover on bottom part of each gallery item with CSS.av-masonry-entry:hover .av-inner-masonry-content{ opacity: 0.7 !important; }
On mobile devices though, those banners with portfolio item title and excerpts always show (ok,there is no mouse over on touchscrrens) but they remain with white background opacity 100%. (Only on click they become transparent for a second befor going to linked portfolio item).
Can you try to help again? Thank youApril 20, 2015 at 7:08 pm in reply to: Icon list: How to change color of icon background (round dots) #431520Wow, you are extremely fast to reply !! Great compliment ! And the code you sent just works fine, thank you !!
April 20, 2015 at 2:13 pm in reply to: Masonry Portfolio: Transparency to title background on mobile devices #431272Did you succeed in displaying the site? Do you see, that on mobile devices, the title and excerpt are always showing with opacity 100%. I would like to change opacity ot those tites on the bottom of each portfolio item.
Thank you again for your help.April 17, 2015 at 5:17 pm in reply to: Masonry Portfolio: Transparency to title background on mobile devices #430450This reply has been marked as private. -
AuthorPosts