Forum Replies Created

Viewing 30 posts - 6,541 through 6,570 (of 11,992 total)
  • Author
    Posts
  • in reply to: Change size of main menu button on scroll #1141956

    Yes now you have to describe more precise what you like to reach.

    in reply to: How can I change position of "Display a scroll down arrow" #1141951

    page-id is on enfold on body – ( #top ) and maybe an absolute value is here better:

    #top.page-id-2034 .scroll-down-link {
        top: 820px;
        bottom: initial
    }

    aha – thats the reason why we ask for link to page. It’s hard to give advice only from a description.

    in reply to: Second logo hide after scroll #1141789

    it would be better to have the link to the page.

    in reply to: Custom translation for Enfold #1141765

    Zunächst wäre der Ort auch im enfold/lang/ Ordner
    und dann hängt es natürlich davon ab, welche Ansprache Form Du gewählt hast.
    Wenn die Seite auf Formal “Sie” basiert, wäre es schon: de_DE_formal.po / mo
    bei dem “Du” als Anrede: de_DE.po / mo

    ich würde jedoch empfehlen, ein Child-Theme lang ordner anzulegen, und dort die Files zu bunkern. So gehen diese nicht beim nächsten Update verloren. Und ich empfehle auch die po files dort zu hinterlegen, falls man was ergänzen möchte.

    Dann kann man das Laden der Child-Theme lang Files initieren, indem man das hier ins child-theme functions.php setzt:

    function overwrite_language_file_child_theme() {
        $lang = get_stylesheet_directory().'/lang';
        return $lang;
    }
    add_filter('ava_theme_textdomain_path', 'overwrite_language_file_child_theme');

    hoffe der Filter ist noch gültig.

    in reply to: enfold-4.6.2.1-beta-mailchimp.zip link please #1141752

    has there anything changed on hamburger styling?
    when activating beta version – the hamburger overlay is alwas the whole screen. and pure black

    in reply to: Full screen slider display #1141735

    Besides the performance problem you have when you put two sliders on the page, and only show one then depending on the screen width –
    think a little bit about your request – how should this work?
    The height is the starting point for the image.
    This height must fill the screen height, so you have automatically cropping with a landscape image ( If the aspect ratio is not the same as the screen dimensions.)
    This is also the case with large screens.
    Only the Full Width slider shows you (almost) always the whole image without trimming.

    in reply to: How to hide the header and menu in posts #1141723

    well on Enfold there are on html and body a lot of classes which you can use to style your layout.
    if these are posts there is on body : single and single-post class
    on portfolio : single and single-portfolio class:

    so you can do this:

    #top.single-post #header { display: none }
    #top.single-post #main { padding-top: 0 !important;}

    if it is only for a special post – you should know the post ID – this you can find too on the body (#top) something like: postid-1959

    in reply to: How to hide the header and menu in posts #1141700

    and how do the visitors then navigate further on your site?

    in reply to: previous / next links on single posts #1141680

    this is code we can use without looking to the sources of Enfold – just looking to the DOM

    Maybe a Mod knows a direkt way to place the things on the footer.php to a different place
    – in footer.php there is the code to echo the post-nav just before wrap_all closes:
    echo $avia_post_nav;

    in reply to: previous / next links on single posts #1141679

    under my nick or avatar there is my info about webpage.

    first i did it with jQuery and used the existing postnavigation
    this to functions.php of your child-theme:

    function post_nav_to_content(){
    ?>
    <script type="text/javascript">
    (function($){
    	$('a.avia-post-nav').wrapAll('<div class="container postnavigation"></div>');
    	$('.container.postnavigation').wrap('<div class="main_color av_default_container_wrap container_wrap fullsize postnav_new"></div>');
    	$('.postnav_new').detach().clone().insertBefore('#footer');
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'post_nav_to_content');

    you see what it does
    first : wrap the all post-nav anchors in one surrounding container
    second : then it wraps again ( to have all those settings from enfold like a section)
    third: it takes that last container from its place and insert it just before footer.

    this to quick css:

    .postnav_new {
        height: 60px;
        position: relative;
        display: block;
        border: none !important;
    }
    
    .responsive .container.postnavigation {
      max-width: 1410px;  /* depends on your general settings container width*/
    }
    
    #top .postnavigation .avia-post-nav {
      background: transparent;
      bottom: 0 !important;
      top: 0 !important;
      margin-top: 0;
      position: absolute;
      height: 60px;
      border-radius: 5px;
    }
    
    #top .postnavigation .avia-post-nav .entry-info-wrap {
      display: table;
      height: 60px;
    }
    
    #top .postnavigation .avia-post-nav:hover .entry-info-wrap {
      width: auto !important;
    }
    
    #top .postnavigation .avia-post-nav .label {
      font-size: 36px;
    }
    
    #top .postnavigation .avia-post-nav .entry-info {
      margin: 0 10px !important;
      vertical-align: bottom;
      height: 60px;
      width: auto !important;
      display: block;
      white-space: nowrap;
    }
    
    .postnav_new .entry-image {
      display: none !important;
    }
    
    .avia-post-nav .entry-info-wrap {
      display: inline-flex;
    }

    just test it
    the rest is styling . f.e. gettting a different arrow or having no background-color

    in reply to: How do I prevent .ru from contact form #1141677

    by the way it seems that the wordpress standard options on Settings – Discussion : Comment Blacklist has an effect too – even if you don’t use Comments.
    after the entry there (one country code per line) – I couldn’t send any more e-mails via my contact form (cf7 by the way) via .ru address

    on most cases form fields got an extra class on that. On Enfold it is the class: error
    so that could help:

    .form_element.error {
        outline: 2px solid  red;
    }

    you can use border aswell – but sometimes it has not effect with border.

    in reply to: Change size of main menu button on scroll #1141632

    may i see your site please.

    in reply to: This element was disabled in your theme settings #1141627

    if you are not on Enfold older than 4.3 afaik that filter is deprecated : avf_builder_boxes
    the new filter is : avf_alb_supported_post_types
    and for metabox: avf_metabox_layout_post_types

    you can read here how to: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-type

    so try this instead:

    // For Activation ALB for CPT
    function avf_alb_supported_post_types_mod( array $supported_post_types )
    {
      $supported_post_types[] = 'projekt';
      return $supported_post_types;
    }
    add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);
    
    // For layout meta box
    function avf_metabox_layout_post_types_mod( array $supported_post_types )
    {
     $supported_post_types[] = 'projekt';
     return $supported_post_types;
    }
    add_filter('avf_metabox_layout_post_types', 'avf_metabox_layout_post_types_mod', 10, 1);
    • This reply was modified 6 years, 5 months ago by Guenni007.
    in reply to: Equal Height Option Not Working #1141530

    you have set other values on your css than it is on default for flex-table ( as the name said – table layout )
    the outcommented lines are the settings you have made –
    the other is the default value
    so look for those custom set rules and get rid of them – because you merged your files it is hard to say where it is placed.

    #top .flex_column_table {
        /*** display: block;  ***/
        display : table
    }
    
    #top .flex_column_table_cell {
        /*** float: left; ***/
        float: none
    }
    in reply to: Bug when using transparant header and custom footer #1141525

    by the way vectorcriz – on some pages the heading of “Kontakt” is bold and big on some it is not.

    in reply to: Bug when using transparant header and custom footer #1141517

    You have takten for that #kontakt section the relative value on ALB Option (100% of browser window height).

    on shortcodes.js you can see what is happening.
    For me it is logic not to subtract the header height on that – because on transparency the content has to go under the header to the top of the window.
    On transparency option the height must be more than on non-transparency mode.
    See line 461 and 479 calculation of that.
    you see on line 461 that only header height is part of the calculation if it is a non-transparency option:
    #header.av_header_top:not(.html_header_transparency #header)

    maybe Try an absolute value for your #kontakt section value f.e. 700px

    in reply to: Full screen slider display #1141504

    so why don’t you use the full-width slider then?
    it shows all of the image always – even on small screens.

    in reply to: Symbol boxes same height #1141465

    a very elegant method is to use the flex box modell:
    the align-items: stretch made the trick
    put the three iconboxes in a 1/1 container ! give to this 1/1 container the custom class: flex-iconboxes

    now put this to your quick css:

    /* mediaquery width depends on your settings ( maybe 768px) */
    
    @media (min-width: 990px) {
      .flex_column.flex-iconboxes {
      display: flex;
      flex-flow: nowrap row;
      justify-content: space-between;
      align-items: stretch;
    }
    
    .flex_column.flex-iconboxes::before, .flex_column.flex-iconboxes::after {
        display: none;
    }
    
    .flex-iconboxes .iconbox {
      flex: 0 1 30%;
      background-color: #e8e8e8 !important;
      border-radius: 5px;
      margin-bottom: 0 !important;
    }
    
    .flex-iconboxes .iconbox_content {
      box-shadow: none !important;
    }
    }

    result see here : https://webers-testseite.de/iconboxes-with-equalheight/

    if you got more than 3 boxes play with the 30% value ( 4 boxes : less than 24% ) etc

    in reply to: Make blog post previous and next Featured Image bigger #1141436

    on functions-enfold.php on line 734 (Enfold 4.6.2) there is:

    $image 	= isset($entry->av_custom_image) ? $entry->av_custom_image : get_the_post_thumbnail( $entry->ID, 'thumbnail' );
    // change to
    $image 	= isset($entry->av_custom_image) ? $entry->av_custom_image : get_the_post_thumbnail( $entry->ID, 'square' );
    

    then the 180px square image from enfold is taken. Don’t know if there is a filter to influence it via child-theme functions.php (yet).

    in reply to: Make blog post previous and next Featured Image bigger #1141417

    so try this and see if image quality is what you might want to have:

    #top .avia-post-nav {
      height: 150px;
    }
    
    .avia-post-nav:hover .entry-info-wrap {
      width: 280px;
    }
    
    .avia-post-nav .entry-info {
      height: 120px;
      width: 260px;
    }
    
    .avia-post-nav .entry-image {
      height: 120px;
      width: 120px;
    }
    
    .avia-post-nav .entry-image img {
        border-radius: 10px;
        border: 2px solid #fff;
        width: 120px;
        height: 120px;
    }
    in reply to: Make blog post previous and next Featured Image bigger #1141412

    As you say it – these are featured images.
    on default on WordPress these are 80px in dimension – so if you make them bigger – the next image in the srcset is taken – and that could be a large one (this will not be an enfold image size – it will be the one you have setup on settings – media .
    mostly it is 300px wide.

    Edit: i do not know yet how to influence what image is taken from srcset.

    to remove the circular shape of the images you just have to enter the following into the Quick Css.

    .avia-post-nav .entry-image img {
        border-radius: 10px;  /* or something different here */
        border: 2px solid #fff;  /* if you like */
    }
    in reply to: Serve resources from a consistent URL #1141406

    if there is a link to a live page – we could advise better. Do you have an SSL page? Maybe there are some http sources – but then you wouldn’t see it secure at the top of the browser’s URL window.

    in reply to: Cannot turn of transparency in logo area #1141403

    I’m a participant like you – so I don’t see your private messages.

    in reply to: enfold-4.6.2.1-beta-mailchimp.zip link please #1141402

    Thanks Rikard !

    in reply to: Bug when using transparant header and custom footer #1141401

    nobody can post a link to a livepage here?

    in reply to: Logo transparency not working #1141380

    Don’t give up so fast! It just doesn’t work. You also have to insert a transparent logo as a normal logo. Then it works

    • This reply was modified 6 years, 5 months ago by Guenni007.
    in reply to: Logo doesn't shrink on mobile devices #1141363

    Dear Mods : this rule seems to be obsolete. It is hard to overwrite a height rule set to auto !important.
    unset , initial and inherit does not do the trick.

    The rule has no influence on the otherhand – so test it please if it could be deleted.
    see fixed but shrinking header here: https://webers-testseite.de/cynthia/fixed-header-on-mobile/

    in reply to: Logo doesn't shrink on mobile devices #1141342

    Well i think i have to look if a header on fixed postion get this working too!

    you can see here – that it is even working this way if you got a fixed header.
    https://webers-testseite.de/cynthia/fixed-header-on-mobile/

    and if it weren’t for the superfluous rule in layout.css:

    @media only screen and (max-width: 767px) {
    .responsive #header_main .container{
      height: auto !important; 
    }
    }

    the header height will shrink too. (See the example page – with deleted rule in layout.css)
    But i found no way ( unset does not work) to overwrite this rule via css – only deleting that rule would help

    • This reply was modified 6 years, 5 months ago by Guenni007.
Viewing 30 posts - 6,541 through 6,570 (of 11,992 total)