Forum Replies Created

Viewing 30 posts - 2,911 through 2,940 (of 3,706 total)
  • Author
    Posts
  • Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Default padding keeps reappearing and won't remove. #405075

    Hey LOGTJM!

    Thank you for coming back.

    If you are talking about the space between the header and the first “tribesta” image – there is a codeblock with a hidden hr inside, that causes the space.

    Try to remove this codeblock.

    If I understood you wrong, maybe you can point out more closely your problem – a screenshot would be helpful.

    Cheers!
    Günter

    in reply to: How to increase font size of excerpt text? #405070

    Hi drksteel!

    Thank you for using our theme.

    Can you pls. send us a link to the page, so we can provide you with the correct CSS. You can post it here as a private reply.

    As Enfold offers so many variations it is hard to help you without seeing the page.

    Cheers!
    Günter

    in reply to: Change Border color #405065

    Hi Dong!

    Thank you for using our theme.

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

    
    #top div .avia-gallery img {
        border-color: green !important;
    }
    
    #top .av-catalogue-list,
    #top .av-catalogue-list > li  {
        border-color: green !important;
    }
    
    

    The border color on the demo site is #ebe8e2.

    Cheers!
    Günter

    in reply to: Fullwidth Button Custom CSS #405048

    Hi Jennifer!

    Thank you for coming back.

    Try the following:

    
    #top .avia-button-fullwidth .av-button-description {
        font-size: 12px !important;
    }
    

    Best regards,
    Günter

    Hey!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Post Slider Margins #404533

    Hi!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Change one menu item's color #404531

    Hi!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: HTML Table – edit CSS to disable border #404523

    Hey!

    I figured out the problem:

    
    td {
        padding: 9px 12px;
    }
    

    When the screen gets too small, this avoids narrowing of the table cells and the table is hidden from the right.

    Try the following and adjust max-width value and the second padding value.:

    
    @media only screen and (max-width: 480px) {
       .page #main table td {
                 padding: 9px 4px;
        }
    }
    

    If you want, you can add several paddings like:

    
    @media only screen and (min-width: 481) and (max-width: 767px) {
       .page #main table td {
                 padding: 9px 8px;
        }
    }
    

    Cheers!
    Günter

    in reply to: HTML Table – edit CSS to disable border #404480

    Hi!

    Thank you for coming back. Try the following:

    
    .page #main table td {
        border-width: 0 !important;
    }
    

    Regards,
    Günter

    in reply to: How to delete white block after masonry? #404421

    Hi!

    Glad I could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: HTML Table – edit CSS to disable border #404412

    Hey antosi!

    Thank you for coming back.

    Can you send us a link to the page with the problem pls. You can post it as a private link here.

    There is a CSS conflict, but without seeing the page and the underlying CSS we cannot provide any assistasnce.

    Best regards,
    Günter

    in reply to: extra graphic appearing in blog posts #404401

    Hey teachingwithamy!

    Thank you for using our theme.

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

    
    .blog .blog-meta a {
        display: none !important;
    }
    

    Best regards,
    Günter

    in reply to: How to delete white block after masonry? #404393

    Hi wordmax!

    Thank you for coming back.

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

    
    .home #after_masonry {
        display: none !important;
    }
    

    Best regards,
    Günter

    in reply to: Kategorie- und Schlagworte-Ansicht konfigurieren #404372

    Hi Oliver!

    Danke dass Du unser Theme verwendest.

    Kannst Du uns Dein Problem näher skizzieren?

    Es gibt das WP Standardverhalten, dass von einem Menüpunkt aus auf eine Kategorieseite verlinkt wird, die aufgrund der Templatehierarchie gefunden wird.

    Bei Enfold gibt es Einstellungen, wie die Seite aufgebaut werden soll.

    Alternativ kannst Du eigene Templates bauen für jede Kategorie. Siehe dazu:

    http://codex.wordpress.org/Category_Templates

    Ich hoffe, das hilft einmal für den Anfang.

    LG
    Günter

    in reply to: Custom CSS #402556

    Hi finchkelsey!

    Thank you for using our theme.

    You apply your custom class in the ALB element without “.”, that means only “blue”.

    This class is applied to the wrapper of the element. As the subelements of this element also have stylings, these can overwrite your settings. You have to check the HTML and CSS structure more closely on the actual page and combine it with classes, id or tags to the actual element, e.g.

    
    .blue .av-special-heading-tag{
    color:#1BC4DE !important;
    }
    

    Cheers!
    Günter

    in reply to: Need a new hook #402551

    Hi!

    Glad we could help you. Enjoy the theme and feel free to come back with further questions.

    Best regards,
    Günter

    in reply to: Need a new hook #402247

    Hey!

    I just contacted Kriesi. He will add it in the next release.

    Regards,
    Günter

    in reply to: Adjust Contact Form #401966

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Reduce header padding #401965

    Hi!

    Thank you for coming back.

    The logo is an image which is displayed with 300px * 100px (width * height).

    If you want to use the maximum, you should scale your logo to that size and it will fill the complete space.

    I hope, I understood your question correctly.

    Cheers!
    Günter

    in reply to: Increase space between social media icons #401961

    Hi!

    Glad you found a solution. Thank you for posting it for other users.

    Enjoy the theme.

    Best regards,
    Günter

    in reply to: Font Size of Blog Titles #401959

    Hi!

    Thank you for cominbg back.

    If you want to limit it to that page only:

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

    Or you can try to use:

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

    Regards,
    Günter

    in reply to: Need a new hook #401958

    Hi hanslindstrom!

    Thank you for using our theme.

    I included the following hook (to follow the new naming convetions for Enfold):

    
    $excerpt = apply_filters( 'avf_post_slider_entry_excerpt', $excerpt, $prepare_excerpt, $permalink, $entry );
    

    and placed a pull request to Kriesi. It should be included in the next update(s) if Kriesi approves it.

    Best regards,
    Günter

    in reply to: Deutsch "Du"-Version #401947

    Hi!

    Gerne stehen wir auch für weitere Fragen zur Verfügung. Viel Freude mit dem Theme.

    Cheers!
    Günter

    in reply to: Deutsch "Du"-Version #401479

    Hi TF_Photography!

    Danke dass Du unser Theme verwendest.

    Die Übersetzung für Enfold Texte sind nur in dem Ordner enfold/lang (in wpde.org sind nur WP Übersetzungen).

    Die sauberste Lösung ist die deutsche Übersetzung mit poedit überarbeiten. Alle anderen Alternativen sind nicht wirklich gut, da Sie und Du auch grammatisch anders aufgebaut ist.

    LG,
    Günter

    in reply to: Customize Magazine #401453

    Hey!

    Thank you for coming back.

    I’ve never used this plugin, I only had a short look at the documentation homepage.

    I would like to help you, but it is bejond the scope of this support forum, as it will take some time to study the documentation and test it.

    Probably you will get a solution from the plugin authors.

    What you need is a HTML code for output of the fields and this should work with the solution I gave you above.

    Cheers!
    Günter

    in reply to: Pricing Table #401444

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Border width of Contact Form #401371

    Hi!

    Freut mich, dass ich Dir helfen konnte. Viel Freude mit dem Theme.

    LG,
    Günter

    in reply to: Border width of Contact Form #401334

    Hi!

    Use the following:

    
    .home #footer.container_wrap {
        border-top: 0px !important;
    }
    

    Best regards,
    Günter

    in reply to: Bug: Masonry Sort Function by Category #401330

    Hi gentlemansgazette!

    Thank you for using our theme.

    The “Sort links” only filter and show the posts that have been loaded already. This is the intended behaviour and cannot be changed.

    As long as you see the “Load More” at the bottom, the posts NOT LOADED cannot be displayed.

    Best regards,
    Günter

Viewing 30 posts - 2,911 through 2,940 (of 3,706 total)