Forum Replies Created

Viewing 30 posts - 3,601 through 3,630 (of 3,695 total)
  • Author
    Posts
  • in reply to: Header mor than 1 line #290111

    Hey!

    Thanks for the update.

    Can you send us the link to the page?

    Best regards,
    Günter

    in reply to: additonal picture sizes #290109

    Hey ThomasWitzany!

    Thank you for using our theme.

    Open functions.php and goto line 91.

    If you are using a child theme, you can put your changes also in functions.php, bot need an action hook:

    
    add_action ('init', 'my_custom_sizes', 99);
    
    function my_custom_sizes()
    {
       global $avia_config;
    
      put your changes here
    }
    

    Cheers!
    Günter

    in reply to: Blog Posts' Featured Image #290106

    Hey wintner!

    Thank you for using our theme.
    1)
    Currently there is no easy possibility to avoid this space. Would need changes in the core files.

    Put the following in custom.css or Enfold->Styling-> Quick CSS field to hide ALL inages:

    
    .home article .blog-meta{
    display: none;
    }
    

    2)
    The image sizes used in the templates are predefined (see functions.php line 91ff). When uploading images WP automatically does the resizing. Best way if you are not satisfied is resizing images manually and then uploading.

    Regards,
    Günter

    in reply to: Increase space between header and content #290080

    Hey!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Team Member Layout #290078

    Hallo,

    Das ganze liegt in einem <p> block (Bild und Text). Damit fließt der Text um das Bild – das geht nicht anders.

    Den Abstand kann man setzen im tag mit:

    
    <img ........ style="margin-bottom: 10px; margin-right: 18px; float: left;">
    

    Cheers!
    Günter

    in reply to: Footer layout & column width #290067

    Hi!

    Thanks for coming back.

    Sorry, but the theme does not support this by default.

    It can be implemented, but this is customization and is beyond the scope of support.

    If you are interested, you can you can hire a freelancer or send me an email at (Email address hidden if logged out) and I can give you a quote.

    Regards,
    Günter

    in reply to: Team Member Layout #290041

    Hallo Sascha,

    Ich habe hier einen Link – vielleicht beantwortet der Deine Frage:

    http://little-boxes.de/lb1/13.1-text-um-bilder-fliessen-lassen.html

    Besser wäre eine konkrete Seite – hast Du einen link?

    Fals es so wie im 2. Bild aussehen soll, geht das nur mit 2 <div>, die in einem umgebenden <div> liegen.

    LG
    Günter

    in reply to: Team Member Layout #289978

    Hallo sascha-Juliot

    Der Code passt, nur folgendes fehlt noch:

    In custom.css oder Enfold->Styling in Quick CSS:

    
    .avia-testimonial-image{
    height: 180px;
    width: 180px;
    }
    

    Regards,
    Günter

    • This reply was modified 10 years, 4 months ago by Günter.
    in reply to: Removing one sidebar menu & Background at blog #289588

    Hi!

    This should do for the 2 pages above.

    
    .page-id-3036 .widget_nav_menu,
    .page-id-3016 .widget_nav_menu{
    display: none;
    }
    

    Best regards,
    Günter

    in reply to: Custom Logo Link #289578

    Hi!

    Danke für die Info, war ein Tippfehler von mir.

    Freut mich, dass wir helfen konnten. Viel Freude mit dem Theme.

    LG
    Günter

    in reply to: order by title with numbers #289575

    Hi!

    As far as I see in the code, the default magazine query is only by date descending. See enfold/config-templatebuilder/avia-shortcodes/magazine.php Line 366ff.

    We also have a chance to hook into the query parameters, if it does not work:

    line 388: apply_filters(‘avf_magazine_entries_query’, $query, $params);

    Best thing you try and if you encounter problems, we can take a closer look.

    Best regards,
    Günter

    in reply to: Increase space between header and content #289522

    Hi frankwelschlehmann!

    Thank you for using our theme.

    Can you send us a link to the page please.

    We can then provide you with the CSS solution.

    Cheers!
    Günter

    in reply to: Removing one sidebar menu & Background at blog #289458

    Hey RestyleXL!

    Thank you for using our theme.

    ad 1)
    Put the following in custom.css or Quick CSS to remove from all pages.

    
    .avia-menu{
    display: none;
    }
    

    If you want to remove only from certain pages you can specify the page id (you find in HTML Code in the <body> tag (e.g.):

    
    .page-id-3036 .avia-menu{
    display: none;
    }
    

    ad 2)

    Put the following in custom.css or Quick CSS:

    
    .slideshow-window{
    border: 20px solid white !important;
    }
    

    Regards,
    Günter

    in reply to: Change the distance between header and main content #289440

    Hey!

    Glad we could help you. Thank you for visiting the forum.

    Best regards,
    Günter

    Hey artemrepin!

    Thank you for using our theme.

    The link you gave us does not work. You will have to publish the page so we can access it.

    Regards,
    Günter

    in reply to: Post Slider – don't show number of comments #289429

    Hi Welmoed!

    Thank you for using our theme.

    Open file
    enfold/config-templatebuilder/avia-shortcodes/postslider.php and find line 383:

    
    $output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    

    Replace this with:

    
    $output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$text_add}</a></div><div class='slide-meta-del'>/</div>";
    

    Best regards,
    Günter

    in reply to: font-family of all the text in my website #289424

    Hi Zeng!

    Thank you for using our theme.

    Place in custom.css or Quick-CSS field the following code:

    
    body {
    font-family:  Arial, sans-serif !important;
    }
    

    Regards,
    Günter

    in reply to: Team Member Layout #289420

    Hallo sascha-Juliot

    Ja, kann man ändern:

    In functions.php am Ende folgenden Code einfügen und xxx mit einer definierten image size ersetzen (80*80 ist thumbnail):

    
    add_filter ('avf_testimonials_avatar_size', 'my_avatar_size', 10, 3);
    
    function my_avatar_size($size,  $src, $class)
    {
    $size = 'xxxx';
    return $size;
    }
    
    

    Regards,
    Günter

    in reply to: change size of sidebar in functions.php #289414

    Hi!

    Glad we could help you. Thank you for visiting the forum.

    Regards,
    Günter

    in reply to: Custom Logo Link #289412

    Hallo Martin,

    Danke, dass Sie unser Theme benützen.

    In functions.php am Ende bitte folgenden Code einfügen und xxxx mit der neuen Adresse ersetzen:

    
    add_filter (''avf_logo_link', 'my_new_logo_link', 10, 1);
    
    function my_new_logo_link ($old_logo_link)
    {
    $new_logo = 'xxxx';
    return $new_logo;
    }
    

    Liebe Grüsse aus Wien
    Günter

    in reply to: order by title with numbers #289406

    Hey understandchristianity!

    Thank you for using our theme.

    No, there is no possibility because the SQL sorting algorithm does not support this. The only way could be to hook into WP after the query and resort the result. But that is not an easy task and will make problems on pagination.

    Cheers!
    Günter

    in reply to: Change the distance between header and main content #289401

    Hi heufti65!

    Thank you for using our theme.

    Put in custom.css or Quick-CSS field the following:

    
    #main .main_color .content  {
        padding-bottom: 10px;
        padding-top: 10px;
    }
    

    You can change the values as you like.

    Best regards,
    Günter

    • This reply was modified 10 years, 4 months ago by Günter.
    in reply to: Image in sidebar – not on front page #289397

    Hi Welmoed!

    Thank you for using our theme.

    You have to identify the sidebar in HTML Code. This should be a unique class (e.g. sidebar_image) or better id for this section. Maybe the plugin allows you to give a unique id (e.g. my_image)

    You can put the following code in custom.css or Quick CSS field:

    
    .home #my_image {
    display: none !important;
    }
    
    or
    
    .home .sidebar_image{
    display: none !important;
    }
    

    If you have troubles identifying the section, insert the image and come back and we help you.

    Regards,
    Günter

    in reply to: Team Member Layout #289393

    Hallo!

    Das Testimonial würde Ihren Wünschen am nächsten kommen. Die Bilder 4-eckig abgerundet sind kein Problem.

    Das Teammember Layout zu ändern ist möglich, aber komplexer. Müsste man den Programmcode abändern sowie etliche CSS Anpassungen und wegen des responsive Designs auch entsprechend testen. Dies ist nur im Rahmen einer Freelancer Tätigkeit möglich (kann ich auch anbieten, bei Interesse bitte E-Mail an (Email address hidden if logged out) ).

    mfg
    Günter

    in reply to: change size of sidebar in functions.php #289118

    Hi frankwelschlehmann!

    Thank you for using our theme

    You must put your changes in an action hook, because the child theme functions.php is loaded before the parent functions.php and therefore your settings are overwritten again.

    Put the following in child functions.php:

    
    add_action('init', 'my_change_function', 90);
    
    function my_change_function()
    {
     //    insert your code here
    }
    

    my_change_function must be a unique name – so choose something concerned with your company to avoid the possibility of duplicate names.

    Cheers!
    Günter

    in reply to: Team Member Layout #289097

    Hey dreisatz!

    Danke, dass Sie unser Theme benützen.

    Vorgesehen sind Änderungen in der Anordnung nicht.

    Hilfestellung bei kleinen Anpassungen können wir im Rahmen des Forums gerne geben, nur ein komplettes Umstellen sprengt den Rahmen.

    Erstellen Sie einmal eine Seite mit ein paar Einträgen und senden Sie mir den Link zu der Seite – evtl. mit Admin Login und ich werde schauen, wie weit ich Ihren Wünschen dann im Rahmen des Forums nachkommen kann.

    Soweit es mit CSS lösbar ist, können wir Ihnen sicher weiterhelfen.

    mfg
    Günter

    in reply to: Cannot update menu #288976

    Hi!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Homepage text not outline #288917

    Hi!

    Glad we could help you. Thank you for using the forum and enjoy the theme.

    Cheers!
    Günter

    in reply to: Testimonial Layout #288903

    Hi!

    Thank’s for coming back.

    I added the following code in functions.php at the end:

    
    function add_custom_script(){
    ?>
    <script>
    jQuery(function() {
    	jQuery(".avia-testimonial-meta-mini").each(function(){
    		jQuery(this).closest('.avia-testimonial_inner').prepend(jQuery(this));
    	});
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');
    

    It moved the names up to the top.

    Regards,
    Günter

    Hey!

    It’s possible to change the colour of the text:

    
    #top .phone-info {
    font-size: 30px;
    color: red;
    }
    

    Instead of red you can put any color, eg #fff or #eaeaea.

    The icons seem to be fixed size and color – I do not find any CSS to change it.

    Best regards,
    Günter

Viewing 30 posts - 3,601 through 3,630 (of 3,695 total)