Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #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!
    Mike

    #175188

    Hello 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,
    Yigit

    #175199
    This reply has been marked as private.
    #176323

    Hey!

    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!
    Peter

    #176439
    This reply has been marked as private.
    #176596

    Hello!

    Nothing else to do :) – I imported the dummy data and you can start to work with it.

    Regards,
    Peter

    #176597

    There 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
    Mike

    #177313

    Hi!

    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,
    Peter

    #177568

    Hi 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

    #178653

    Hi!

    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,
    Yigit

    #178699

    Hmmm… still not working… only changes the line weight of the mega menu…

    Thanks for trying…
    mdgworld

    #178701

    Hey!

    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,
    Yigit

    #179097
    This reply has been marked as private.
    #179347

    Hi!

    I’m sorry but do you want to make the line thicker for the submenu?

    .main_menu ul:first-child >li > ul {
    border-top-width: 4px;
    border-top-style: solid;
    }

    Best regards,
    Ismael

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Handful of questions – Bullets, Hovers, Banners…’ is closed to new replies.