Forum Replies Created

Viewing 30 posts - 2,941 through 2,970 (of 3,706 total)
  • Author
    Posts
  • in reply to: Font Size of Blog Titles #401320

    Hi m!

    Thank you for using our theme.

    Try the following and adjust the value:

    
    .blog #main .post-title a {
        font-size: 60px !important;
    }
    

    If this does not work please give us a link to your page so we can see your setup.

    You can post it as a private reply here.

    Cheers!
    Günter

    in reply to: Pagination Color Styling #401315

    Hey!

    Try to use the following:

    
    .pagination .current {
        border: 1px solid #2c5b9c !important;
    }
    

    Regards,
    Günter

    in reply to: Reduce header padding #401307

    Hi kellymarie2001!

    Thank you for using our theme.

    Can you give us a link to your page please so we can see your setup.

    You can post it as a private reply here.

    Regards,
    Günter

    in reply to: breadcrumbs #401305

    Hi!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Border width of Contact Form #401295

    Hi cberentz!

    Thank you for coming back.

    Use the following and adjust as needed:

    
    #top div .av-dark-form .input-text, #top div .av-dark-form input[type="text"], #top div .av-dark-form input[type="input"], #top div .av-dark-form input[type="password"], #top div .av-dark-form input[type="email"], #top div .av-dark-form input[type="number"], #top div .av-dark-form input[type="url"], #top div .av-dark-form input[type="tel"], #top div .av-dark-form input[type="search"], #top div .av-dark-form textarea, #top div .av-dark-form select, div div .av-dark-form .button {
        border-width: 1px !important;
    }
    

    To use the code above more flexible you can remove “.av-dark-form”.

    2 px is the default border width used with this element.

    Best regards,
    Günter

    in reply to: Customize Magazine #401279

    Hi lipstick!

    Thank youm for using our theme.

    As much as I’ve seen the mentioned function returns a string.

    So you can use it like this:

    
    
    $my_fields = types_render_field("my-date", array("style" => "calendar"));
    $output .= "<footer class='entry-footer'> . $my_fields . </footer>";
    
    

    Probably you need to do some CSS for the output in custom.css or Enfold->Styles->QuickCSS.

    Best regards,
    Günter

    in reply to: Post title over image #401273

    Hi!

    Thank you for coming back.

    Sorry we could not find an easy solution for you.

    Feel free to return with any problems you encounter.

    Cheers!
    Günter

    in reply to: latest wp version and javascript error #400632

    Hey nicolini76!

    Thank you for using our theme.

    Try to download the newest version of Enfold and reinstall the theme – maybe try it with ftp.

    Deactivate all plugins and check – maybe there is a plugin conflict.

    Come back, if the problem remains.

    Best regards,
    Günter

    in reply to: breadcrumbs #400629

    Hi ftt123!

    Thank you for coming back.

    enfold\framework\php\class-breadcrumb.php line 26 and 186

    Best regards,
    Günter

    in reply to: Im Menü nur eine Rubrik Farbe ändern #400625

    Hey!

    Jeder Menüpunkt hat eine eindeutige ID. Diese kann man z.B. in Firefox mit Firebug oder aus dem Quelltext der Seite herausfinden.

    Mithilfe dieser ID kann man dann die Textfarbe für den Menüpunkt wie folgt ändern:

    In custrom.css oder Enfold->Styles->QuickCSS und den Farbwert anpassen:

    
    #menu-item-758 .avia-menu-text {
        color: green !important;
    }
    

    Sollte das nicht gehen, bitte einen Link zu der Seite posten als private Reply.

    Best regards,
    Günter

    in reply to: Breadcrumbs and title margins #400621

    Hey!

    Thank you for coming back.

    Try the following and adjust the value:

    
    .title_container .main-title a {
        font-size: 30px !important;
    }
    

    Cheers!
    Günter

    in reply to: Pricing Table text alignment #400609

    Hey BlueSuites!

    Thank you for using our theme.

    In custom.css or Enfold->Styles->QuickCSS put the following and adjust the value:

    
    .pricing-table li.avia-pricing-row {
        height: 160px !important;
    }
    

    To limit it to the given page:

    
    .page-id-994 .pricing-table li.avia-pricing-row {
        height: 160px !important;
    }
    

    Cheers!
    Günter

    in reply to: Post title over image #400594

    Hi!

    I tried to find a solution for your request, but it is not so easy (other ideas broke the design).

    You can try the following solution, but I’m not sure, if it will work and what the sideeffects on your other pages are:

    Goto line 89 of the original file:

    
           //echo preview image
            if(strpos($blog_style, 'big') !== false)
            {
                if($slider) $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>';
                if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
    		
    ////////////////////  insert codeblock here, first div with class="my-moved-header" only
                       
    
            }
    

    Then we can move the title with CSS over the image:

    
    .template-blog .my-moved-header {
        padding: 10px;
        position: relative;
        top: -175px;
        z-index: 1000;
    }
    

    We will need to position the post content also, but this we will do, when the code above works and you are satisfied with the solution.

    Cheers!
    Günter

    Hi!

    This widget is a standard WP widget:

    wp-includes\default-widgets.php

    Have a look at line 565ff.

    There you find filter hooks to modify the query for categories:

    
    wp_dropdown_categories
    
    wp_list_categories
    

    Hope, this will help you.

    Cheers!
    Günter

    Hi turistai!

    Thank you for using our theme.

    Unzip the theme files and upload the original functions.php via FTP – = overwrite the file on the server.

    Cheers!
    Günter

    in reply to: Post title over image #398985

    Hi!

    Thank you for coming back.

    To move the headline over the image try the following:

    Look for (line 96 of original file:

    
            if(!empty($before_content))
                echo '<div class="big-preview '.$blog_style.'">'.$before_content.'</div>';
    

    and split it:

    
            if(!empty($before_content))
                echo '<div class="big-preview '.$blog_style.'">'.
    
    ////        put your codeblock with surrounding <div> here
    
                echo $before_content.'</div>';
    

    You may need some CSS styling.

    The image has the same link as the title, so this should work.

    To remove the hover effect try the following:

    js\avia.js goto line 571:

    
                	link.on('mouseenter', function(e)
    				{
    					var current = link.find('img:first'),
    						_self	= current.get(0),
    

    and replace with:

    
                	link.on('mouseenter', function(e)
    				{
                                            return;
    
    					var current = link.find('img:first'),
    						_self	= current.get(0),
    

    Best regards,
    Günter

    in reply to: Post title over image #398936

    Hey Sasolini!

    Thank you for coming back.

    To move the post title you have to modify the core file includes\loop-index.php.

    From line 130 you find

    
              echo '<header class="entry-content-header">';
                    echo $title;
    
                    echo "<span class='post-meta-infos'>";
    
    ..........
    
               echo '</header>';
    
    

    This you have to move before line 89:

    
     //     insert your code here
    
           //echo preview image
            if(strpos($blog_style, 'big') !== false)
            {
                if($slider) $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>';
                if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
            }
    
            if(!empty($before_content))
                echo '<div class="big-preview '.$blog_style.'">'.$before_content.'</div>';
    

    But you should wrap the moved code in a div like for styling reasons:

    
    <div class="entry-content-wrapper clearfix standard-content my-moved-header">
    
    </div>
    

    For the animation effect you can try to modify js\avia.js from line 571.

    Cheers!
    Günter

    in reply to: Change background of contact form fields #398898

    Hey!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Change background of contact form fields #398886

    Hi Peter!

    Thank you for coming back.

    Try to use the following:

    
    .avia_ajax_form textarea,
    .avia_ajax_form input {
        background: none repeat scroll 0 0 gray !important;
        border: 3px solid black !important;
    }
    

    Best regards,
    Günter

    in reply to: Contact Form 2 felds in one line??? #398753

    Hallo Thomas,

    Frage 2:

    Versuche das folgende:

    
    .template-single-blog .standard-content.clearfix {
        clear: none !important;
    }
    

    Frage 1:

    Ist vermutlich mit JavaScript und jQuery machbar, aber nicht leicht. Besser wäre es vermutlich, auch die php Datei zu überarbeiten. Aber auch das sprengt den Rahmen des Supportforums.

    LG
    Günter

    in reply to: Contact Form 2 felds in one line??? #398351

    Hallo Thomas,

    Mit dem Standad Contact Form des ALB ist dies leider nicht lösbar. Dies wäre Customization und sprengt den Rahmen des Support Forums.

    Es gibt aber einige 3-rd party plugins für Formulare, die dies sicher schon implementiert haben,

    https://wordpress.org/plugins/contact-form-7/

    dürfte ein recht gutes sein. Versuche es einmal.

    LG
    Günter

    in reply to: Buttons not centered in columns #398341

    Hi Apollo87!

    Thank you for coming back.

    Try to use the following and adjust the value:

    
    .avia-button-wrap a {
        margin-left: 35px !important;
    }
    

    Regards,
    Günter

    in reply to: Contact Form 2 felds in one line??? #398330

    Hi!

    Ja, wir stehen Dir gerne auch in Deutsch zur Verfügung.

    LG
    Günter

    in reply to: Contact Form 2 felds in one line??? #398265

    Hi finon!

    Thank you for coming back.

    Add the element streetname and then streetnumber, open them and adjust the “Form Element Width”, that both values sum to 1.
    Be sure, that the element(s) before also fill up a complete line.

    Hope, this helps you.

    Cheers!
    Günter

    in reply to: Redirect directly to a specific pop up lightbox #398214

    Hey!

    Glad we could help you. Enjoy the theme.

    Come back with further questions – but open a new thread please.

    Best regards,
    Günter

    Hi!

    Use the following CSS – put in QuickCSS or custom.css:

    
    .mfp-container .hidden {
        position: relative !important;
    }
    

    Regards,
    Günter

    in reply to: Img Size change – enfold function and child theme function #398198

    Hey!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: grid.css has a comma that needs to be removed #397697

    Hi!

    I added as a bugfix change. It will probably be added by kriesi in the next update.

    Sorry for any inconvenience caused by this.

    Enjoy the theme.

    Cheers!
    Günter

    in reply to: Apostrophes and Backslashes #397693

    Hey Global_UK!

    Thank you for using our theme.

    I had a look at the link you gave us – all seems to look fine.

    Can you point out the problem more clearly – a screenshot would be helpful.

    Regards,
    Günter

    in reply to: Shortcode inside Avia Page Builder #397680

    Hey Tim!

    Thank you for using our theme.

    Did you try the ALB Element “Blog Posts”. There you can select “Display entries from a custom taxonomy” and that should display your custom post types in the next select box “Which Entries”. And you can select grid layout and the # of colums you want.

    You can also have a look into the core files:

    config-templatebuilder\avia-shortcodes\blog.php
    config-templatebuilder\avia-shortcodes\postslider.php

    and try to change the query params there directly or via a hook function.

    Come back if you need more help.

    Regards,
    Günter

Viewing 30 posts - 2,941 through 2,970 (of 3,706 total)