-
AuthorPosts
-
October 14, 2013 at 2:44 pm #175066
Hello,
I posted some additional needs last week, but didn’t get a response and the thread was closed: https://kriesi.at/support/topic/handful-of-questions-bullets-hovers-banners/
Any help with my additional questions is greatly appreciated:
Hi Yigit,
1. Can I send the site info to you personally (do you have an email you use for things like this?)
2. Wouldn’t added it to the Header.php make it one image for all of the pages? I want to use different images on each page.
3. This made the line thicker on the one item I’m using as a mega menu, but my other main nav items are not mega menus so they stay the thinner weight. Is there code that puts the thicker weight on all of the main nav drop downs?
4. The code didn’t work for me (??)
Thanks!
MikeOctober 14, 2013 at 5:58 pm #175188Hello mdgworld!
You can post it here privately. Make sure to check “Set as private reply (Only you and moderators will see the content of this post)” above Submit button.
We can take a look at other changes when you post the link to your website, but for your second question, you are going to need to hire a freelance developer as it is a bit more than what we can provide in default support.Best regards,
YigitOctober 14, 2013 at 6:15 pm #175199This reply has been marked as private.October 16, 2013 at 10:05 am #176323Hey!
I imported the sql file on your server (with a plugin called adminer). Please make a backup of the database (i.e. with: http://wordpress.org/plugins/backupwordpress/ ) because the importer doesn’t seem to work on your server and if you want to revert to the default demo dat you just need to delete the entire data in the database and then you can restore it with the sql backup file.
Cheers!
PeterOctober 16, 2013 at 2:37 pm #176439This reply has been marked as private.October 16, 2013 at 8:19 pm #176596Hello!
Nothing else to do :) – I imported the dummy data and you can start to work with it.
Regards,
PeterOctober 16, 2013 at 8:23 pm #176597There were 4 questions in the thread that still needed answering. That’s what I mean. Am I waiting on you to review and provide answers?
Thank you
MikeOctober 18, 2013 at 9:56 am #177313Hi!
1) You can change the border width with following css code
#top .header_color .avia_mega_div > .sub-menu, #top .main_menu ul:first-child >li > ul { border-top-width: 4px!important; }
2) Yes, custom fields would be a solution but it requires some custom code. Depending on what you need I recommend to to hire a freelancer. You can use the ava_after_main_menu action (see: http://codex.wordpress.org/Function_Reference/add_action ) to output the code. The advantage would be that you can place the banner image code into a child theme file.
3) I think the “text shift” is caused by an unnecessary br tag in the html source. I think WP adds it because of the script tag. Try to place the js scripts into the same line like the image link – i.e.
<p> <a class="wistia-popover[height=540,playerColor=7b796a,width=960]" href="http://fast.wistia.net/embed/iframe/tyg8zrndv4?popover=true" style="position: relative; overflow: hidden; display: block;"><img style="border: 1px solid black;" alt="" src="http://embed.wistia.com/deliveries/b47d9488778804ce44807dffedc629c202ee909e.jpg?image_play_button=true&image_play_button_color=7b796ae0&image_crop_resized=282x159" width="282" height="159"><span class="image-overlay overlay-type-extern" style="opacity: 0; left: 0px; top: 0px; display: block; height: 151px; width: 267px;"><span class="image-overlay-inside"></span></span></a> <br> <script charset="ISO-8859-1" type="text/javascript" src="http://fast.wistia.com/assets/external/popover-v1.js"></script> </p>
should turn into:
<p> <a class="wistia-popover[height=540,playerColor=7b796a,width=960]" href="http://fast.wistia.net/embed/iframe/tyg8zrndv4?popover=true" style="position: relative; overflow: hidden; display: block;"><img style="border: 1px solid black;" alt="" src="http://embed.wistia.com/deliveries/b47d9488778804ce44807dffedc629c202ee909e.jpg?image_play_button=true&image_play_button_color=7b796ae0&image_crop_resized=282x159" width="282" height="159"><span class="image-overlay overlay-type-extern" style="opacity: 0; left: 0px; top: 0px; display: block; height: 151px; width: 267px;"><span class="image-overlay-inside"></span></span></a> <script charset="ISO-8859-1" type="text/javascript" src="http://fast.wistia.com/assets/external/popover-v1.js"></script> </p>
If this doesn’t work because of whatever reason try to add following code to the quick css field
.home .flex_column .iconbox_content p br{ display: none; }
4) Try following css code – it should replace the rectangles with bullets
.avia-bullet { border: 2px solid !important; border-radius: 2px; }
Best regards,
PeterOctober 18, 2013 at 8:51 pm #177568Hi Peter,
1. Hmmm… code did nothing to the line weight. The previous code I was given worked to make just the Mega Menu line thicker, but this did nothing. Previous code that I put back in for the time being is:
#top .header_color .avia_mega_div > .sub-menu { border-top-width: 4px!important; }2. I’ll work with a freelancer. Thank you.
3. This was happening across all images (not just script pieces) and appears to be a combination of the break you mentioned as well as me copying a lot of the info from another CMS and the paragraph tags causing some problems. I’m working on it and believe I have it at least relatively under control. Thank you.
4. Worked. Thank you.
Any help with #1 is greatly appreciated. It’s not a huge deal, but it’d be great if it worked.
Thankl!
mdgworld
October 21, 2013 at 9:49 pm #178653Hi!
Please switch following code
#top .header_color .avia_mega_div > .sub-menu { border-top-width: 4px!important; }
with this one
#top .header_color .avia_mega_div > .sub-menu, .header_color .main_menu ul:first-child >li > ul { border-top-width: 4px!important; }
Best regards,
YigitOctober 21, 2013 at 11:19 pm #178699Hmmm… still not working… only changes the line weight of the mega menu…
Thanks for trying…
mdgworldOctober 21, 2013 at 11:20 pm #178701Hey!
Can you post a screenshot and show where exactly you would like to change? Previous code should increase the top border on sub-menus as well as mega menu
Best regards,
YigitOctober 22, 2013 at 2:54 pm #179097This reply has been marked as private.October 23, 2013 at 2:18 am #179347 -
AuthorPosts
- The topic ‘Handful of questions – Bullets, Hovers, Banners…’ is closed to new replies.