Forum Replies Created

Viewing 21 posts - 3,661 through 3,681 (of 3,681 total)
  • Author
    Posts
  • in reply to: Change Font Color on 1 Menu Item #285765

    Hi sundialstudios!

    Thank you for using our theme.

    Try the following:

    
    #menu-item-9651 a .avia-menu-text{
       color: #ffffff !important;
    }
    

    Best regards,
    Günter

    Hi!

    If you want to change the text “Taggarkiv:” – Easiest way is to change it in the translation file e.g. with poedit.exe

    The second way is to change it in the source code, but that will be overwritten with every update. You find the english text in:
    enfold/framework/php/function-set-avia-frontend.php line 898.

    As far as I see, the Portfolio items header is gone.

    Best regards,
    Günter

    in reply to: Portfolio grid no categories available #285644

    Hey wacky32!

    Thank you for using our theme.

    Did you select categories for the portfolio entries?

    If yes, ty to disable all other plugins and check again – maybe a plugin could cause this error.

    Cheers!
    Günter

    Hi xxl!

    Thank you for using our theme.

    1. The menu is overlapping the logo (depending on browser window width):

    Try options > Header > Mobile Menu and choose 990px in “Header Mobile Menu activation” section

    If this does not help, try to put the following code to Quick CSS in Enfold theme options under Styling tab:

    
    @media only screen and (max-width: 1140px) and (min-width: 990px) {
    .av-main-nav > li > a { padding: 0 10px !important; }
    

    2. Would like to remove the “Portfolio items” header in the tags listing:

    Please send us the link to the page so we can check for CSS.

    Best regards,
    Günter

    Hi!

    Take a look at this topic:

    https://kriesi.at/support/topic/displaying-custom-post-types-inside-of-the-avia-layout-builder/

    We currently do not support custom post types in the theme.

    If you want to implement such a feature, it only can be done as an extension by a freelancer.

    Best regards,
    Günter

    in reply to: Icon alignment #285209

    Hi Jarnis82!

    Thank you for using our theme.

    Can you send us the link to the page so we can check for the problem.

    Cheers!
    Günter

    Hey neotemplates!

    Thank you for using our theme.

    A possible answer to your question you can find here:

    https://kriesi.at/support/topic/portfolio-items-custom-fields/

    If anything is unclear, don’t hesitate to contact us again.

    Cheers!
    Günter

    Hey!

    Danke, dass SIe das Forum besucht haben und viel Freude mit dem Theme.

    Cheers!
    Günter

    in reply to: Simple inline html codes #285164

    Hey!

    This problem is an already known limitation of the theme due to WP stripping out the <br> tag.

    We posted in already to Kriesi. Hopefully he will find a solution.

    Regards,
    Günter

    Hi FrankLohmann!

    Danke, dass Sie unser Theme benützen.

    Standardmäßig wird dies durch das Theme nicht unterstützt.

    Programmtechnisch läßt sich natürlich alles implementieren, allerdings liegt dies nicht mehr im Bereich des Support Forums.

    Cheers!
    Günter

    Hi FrankLohmann!

    Danke, dass Sie unser Theme benützen.

    Können Sie uns einen Link schicken zu der Seite, wo das Problem auftritt, damit wir den CSS Code checken können?

    Danke.

    Best regards,
    Günter

    in reply to: Insert image in Header instead of Secondary Menu #284031

    Hi!

    Using the action hook allows you to add HTML code for your logo image. This can be styled with CSS and can be made responsive. It is also possible to add additional JavaScript code if necessary.

    This is customisation and bejond the scope of the support forum.

    Best regards,
    Günter

    in reply to: How to remove featured image in archive ? #283999

    Hi remix1998!

    Thank you for using our theme.

    If you want to remove the featured image from the archive page, you need to use enfold-child theme and it needs some modifications to the php source.

    If you want to do this, i can send you the modified files.

    Best regards,
    Günter

    in reply to: Blog pulling from all categories #283996

    Hi tonyiatridis!

    Thank you for using our theme.

    Did you select one or more categories in the select box “Which categories should be used for the blog?”

    If not, all categories are shown by default.

    If you still have troubles, please send us login data, so we can check.

    Regards,
    Günter

    in reply to: Simple inline html codes #283682

    Hi!

    Thank you for using our theme.

    Using “TEXT” allows you to enter pure HTML code, “VISUAL” interpretes your entry as characters to be displayed.

    Regards,
    Günter

    in reply to: 100% width responsive logo #283671

    Hi!

    Try to add the following:

    
    @media only screen and (max-width: 767px) {
    .responsive .logo,
    .responsive .logo a, 
    .responsive .logo img {
        height: auto !important;
        max-height: none !important;
    }
    }
    

    You can also set the value of height from auto to your desired height.

    Cheers!
    Günter

    in reply to: Insert image in Header instead of Secondary Menu #283644

    Hi changegroup!

    Thank you for using our theme.

    The following action hook allows you to echo HTML code directly after the closing <nav> tag inside the header:

    
    do_action('ava_after_main_menu');
    

    You can echo your logo in an tag and style it with CSS.

    Regards,
    Günter

    in reply to: adding button to enfold header #283632

    Hey ste_thumbs!

    Thank’s for using our theme.

    There is an action hook:

    
    do_action('ava_after_main_menu');
    

    that allows you to echo HTML code right after the <nav> closing tag of the menu.

    Cheers!
    Günter

    in reply to: Drag & Drop doesn't work #283623

    Hi Daniela!

    Danke, dass Sie unser Theme benützen.

    Haben Sie die letzte Version von Enfold installiert (2.8.1) und auch WordPress am letzten Stand (3.9.1)?

    Ich habe bei einer komplett neuen Installation versucht, den Fehler zu rekonstruieren – bei mir funktioniert aber alles einwandfrei.
    Eventuell Browser schließen und neu öffnen oder/und Rechner neu starten. Eventuell auch einen anderen Browser versuchen.

    Falls das keine Lösung bringt – können wir einen Account bekommen, damit wir es auf Ihrer Seite testen können?

    Regards,
    Günter

    in reply to: Word Wrap in Menu – or Have the menu on two lines #283608

    Hi!

    You can try the following:
    Add this on Quick CSS or custom.css:

    
    .menu-item-top-level{
    	text-align: center;
    }
    

    This will center all top menu items.

    If you only want to center a specific item, you have to find out the id of this menu and can use the following code (2971 must be replaced with the ID of your menu ID) :

    
    #menu-item-2971 {
    	text-align: center;
    }
    

    Regards,
    Günter

    in reply to: Child Theme After-the-fact #282835

    Hey!

    Yes, go to Enfold > Theme Options > Import/Export and click the blue button..

    do we work from the child theme or parent theme?

    I’m not sure if I understand your question but you must activate the child theme (Appearance > Themes) like a standard theme and then you work “from the child theme”.

    Regards,
    Günter

Viewing 21 posts - 3,661 through 3,681 (of 3,681 total)