Tagged: 

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

    I have bought the Ubermenu plugin and it is not working, I know you do not support it, but when I turned it off and tried to use you Megamenu I still get only a portion of the wide Megamenu. It seems to be constrained by the width of the header name above it.

    Thanks for any help

    http://toothlander1.staging.wpengine.com/ (hosted on WPengine)

    #300910

    Also while I have you here, how can I add a tag line next to the Logo, or a text box or something into that empty white space?

    #301120

    Hey!

    1- Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #header .avia_mega_div { right: auto !important; }

    2- Please go to Enfold/includes folder and open helper-main-menu.php file and find

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);

    and add your text right below it as following

    echo "<div class='header-custom-text'>This is my custom text!</div>";

    You can use .header-custom-text class in Quick CSS field to style your text

    Best regards,
    Yigit

    #301193

    Hey Yigit
    I have added the code to helper-main now it looks like this:
    <?php
    /*
    * display the theme logo by checking if the default logo was overwritten in the backend.
    * the function is located at framework/php/function-set-avia-frontend-functions.php in case you need to edit the output
    */
    $addition = false;
    if( !empty($headerS[‘header_transparency’]) && !empty($headerS[‘header_replacement_logo’]) )
    {
    $addition = ““;
    }

    echo avia_logo(AVIA_BASE_URL.’images/layout/logo.png’, $addition, ‘strong’, true);
    echo “<div class=’header-custom-text’>Your Trusted Source for Everything Dental! </div>”;

    if($headerS[‘header_social’] == ‘icon_active_main’ && !empty($headerS[‘bottom_menu’])) echo $icons;

    /*
    * display the main navigation menu
    * modify the output in your wordpress admin backend at appearance->menus
    */
    $extraOpen = $extraClose = “”;
    if($headerS[‘bottom_menu’]){ $extraClose = “</div></div><div id=’header_main_alternate’ class=’container_wrap’><div class=’container’>”; }

    echo $extraClose;

    echo “<nav class=’main_menu’ data-selectname='”.__(‘Select a page’,’avia_framework’).”‘ “.avia_markup_helper(array(‘context’ => ‘nav’, ‘echo’ => false)).”>”;
    $avia_theme_location = ‘avia’;
    $avia_menu_class = $avia_theme_location . ‘-menu’;
    $args = array(
    ‘theme_location’ => $avia_theme_location,
    ‘menu_id’ => $avia_menu_class,
    ‘menu_class’ => ‘menu av-main-nav’,
    ‘container_class’ => $avia_menu_class.’ av-main-nav-wrap’,
    ‘fallback_cb’ => ‘avia_fallback_menu’,
    ‘walker’ => new avia_responsive_mega_menu()
    );

    but still no tag line

    #301196

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General styling tab

    .header-custom-text {
    float: right;
    }

    Best regards,
    Yigit

    #301197

    Ok, the tag was small so hiding under the logo, now it’s partly covered by the logo, will try to figure out the css to move it to the right

    #301198
    #301219

    Hi Yigit
    This is getting a bit annoying, you give me solutions, and I spend time trying them, but then something odd happens when I try it in different viewers, For example your tip on the tagline works great on a big screen, but if I try it on a mobile, the tak line is huge and stays huge.
    Surely a tag line is something that is commonly used, why is it you guys don’t have it worked out yet?
    Sorry, i don’t mean to be overly critical, but it just takes days to wait for an answer and it’s just a lot of time wasted.
    Regards
    Victor

    #301222

    Hi!

    Feel free to request such feature or vote if already requested here – https://kriesi.at/support/enfold-feature-requests/

    Using media queries you can adjust the font size on different screensizes. Please add following code to Quick CSS as well

    @media only screen and (max-width: 1140px) and (min-width: 990px) {
    .header-custom-text { font-size: 22px; }}
    @media only screen and (max-width: 989px) {
    .header-custom-text { font-size: 14px; }}
    @media only screen and (max-width: 768px) {
    .header-custom-text { display: none; }}

    Best regards,
    Yigit

    #301228
    This reply has been marked as private.
    #301316

    Hi!

    We provide services for free here on Kriesi.at and we have a queue which goes from the oldest to the newest queries. Every post gets an answer within 24 hours ( usually around 7 to 10 hours ). You can always search the forum or have look at Enfold documentation ( http://kriesi.at/documentation/enfold/ ) to find the answers. But if you need urgent modifications, you can hire a freelance developer on Envato Studio or Codeable. You can also request quote from WerkPress.

    Regards,
    Yigit

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.