Forum Replies Created

Viewing 30 posts - 8,941 through 8,970 (of 11,794 total)
  • Author
    Posts
  • in reply to: Removign Enfold logo #912903

    that is why i posted the display : none on the logo img

    .logo img,  .responsive .logo img {
      display:none !important;
    }

    and please remove this

    span.logo {
      display:none;
    }

    because that is the container. If you set the container to display:none it will cause some height problems of the header

    yes – thanks – thats it.

    in reply to: Removign Enfold logo #912848

    yes – but i can not see one

    in reply to: e-mail address is clipped on page on Iphone portrait #912837

    yes now i see. but it is in footer too.

    so i guess if you don’t like the word-wrap and don’t like to have 2/5 3/5 columns layout (instead of 1/2 1/2)
    you only can take this to a 3-liner

    
    E-Mail:
     (Email address hidden if logged out) 
    in reply to: Removign Enfold logo #912832

    but please do the display : none to the img
    if you do it to logo – container you will have troubles on preserving the height for hamburger menu.

    make your browser-window very small ! The logo is still there

    header_meta – see here:

    in reply to: How to change the font color of a contact form element? #912825

    and something important to Firefox
    all placeholders have transparency – to avoid this:

    ::-moz-placeholder {
      opacity: 1 !important;
    }
    in reply to: How to change the font color of a contact form element? #912822

    you must replace pink than with #fff :lol

    to change it globaly: it is on Enfold Options Dialog: Main Content secondary font color

    the rest will work with attribute selektor

    #top .main_color input[type="text"], 
    #top .main_color input[type="input"], 
    #top .main_color input[type="password"], 
    #top .main_color input[type="email"], 
    #top .main_color input[type="number"], 
    #top .main_color input[type="url"], 
    #top .main_color input[type="tel"], 
    #top .main_color input[type="search"] 

    depends on the field you like to change

    in reply to: How to change the font color of a contact form element? #912805

    its allways better to see the link.
    But do you mean the real inputed text or the place-holder text in the field ?

    tip for placeholder-text:

    ::-webkit-input-placeholder {
      color: pink !important;
    }
    ::-moz-placeholder { 
      color: pink !important;
    }
    :-ms-input-placeholder { 
      color: pink !important;
    }
    :-moz-placeholder { 
      color: pink !important;
    }
    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: e-mail address is clipped on page on Iphone portrait #912800

    and you don’t like this:

    <a href="mailto: (Email address hidden if logged out) ">e-mail</a>

    or make the space between the columns a bit smaller:

    #footer div .av_one_third {
        margin-left: 4%;
    }

    or you play a bit with 1/3 width in footer (values depends on space width etc)

    #footer .av_one_third:first-child {
        width: 36%;
    }
    
    #footer .av_one_third:nth-child(2) {
        width: 25%;
    }

    i can not simulate it in browser if these settings are overwritten by responsive case – so test it please

    in reply to: e-mail address is clipped on page on Iphone portrait #912794

    and it has to be written out – i mean you can place the link on an E-Mail or a sign

    you can force the word break by this – but it looks horrible:

    #email {
        word-wrap: break-word !important;
    }
    in reply to: Removign Enfold logo #912789

    yes – do not forget the responsive case:

    .logo img,  .responsive .logo img {
      display:none !important;;
    }

    by the way on responsive case there is an empty header_meta
    if you don’t like that :

    .responsive #header_meta {
        display: none;
    }
    • This reply was modified 7 years, 9 months ago by Guenni007.

    if there is content in private content – i’m participant as you are.

    so look again to the test page. if you have my section.php and uncheck the page playes the sound and you can switch with that button.
    I think the function has to be adjusted that it beginns with clicked status. Don’t know how to.
    https://webers-testseite.de/3-4th-centered/

    to your images mute and unmute
    – do you have adjusted the css from above and link to your mute/unmute png files?
    did your gave the color-section the custom-class: av-section-color-overlay-wrap ?

    well i have to download a video file with sound – i guess with youtube videos it will not work.

    in reply to: Which multi language plugin? #912744

    i am very satisfied with WPML ( and because i have a lot of customers having more than one language at their website i got Multilingual CMS for life upgrade from CMS)

    But try first the costfree versions of other plugins

    Polylang seems to be very popular

    uncheck if you want to have audio
    this is by default muted (on good reasons) because if you have more than one background video per site it will be a mess.

    hear yourself: https://webers-testseite.de/3-4th-centered/

    in reply to: How to add the avia layout builder to my custom post type? #912738

    Ah – by the way – for my events a few days ago i’m looking for a solution to have post navigation left/right (as on portfolio)
    it works from the beginning but to have only the same cat there has to be something special in functions.php

    we all new something like this in functions.php of child-theme:

    add_filter( 'avia_post_nav_settings', 'enfold_customization_same_cat' );
    function enfold_customization_same_cat( $s ) {
        $s['same_category'] = true;
      return $s;
    }

    but on portfolio case this category is set to taxonomy (which is portfolio-entries))
    maybe you like to have that for your custom-post-type too
    i found the solution for event to this:

    add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod');
    function avia_post_nav_settings_mod($settings)
    {
      if(is_singular('portfolio')) {
        $settings['taxonomy'] = 'portfolio_entries';
        $settings['same_category'] = true;}
      if(is_singular('event')) {
        $settings['taxonomy'] = 'event-categories';
        $settings['same_category'] = true;}
      return $settings;
    }

    so i think you have to find first your custom post-type ( event is mine) and the taxonomy you will find at the custom post type list (“category”)

    https://kriesi.at/support/topic/having-for-custom-post-type-event-the-avia-post-nav-too/#post-909664

    in reply to: How to add the avia layout builder to my custom post type? #912733

    well a lot of custom post-types and portfolio entries are too custom post types can be activated.

    I have Events Manager installed and i can activate the alb by:

    add_filter('avf_builder_boxes','enable_boxes_on_events');
    function enable_boxes_on_events($boxes) {
    $boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('event'), 'context'=>'normal', 'expandable'=>true );
    $boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('event'), 'context'=>'side', 'priority'=>'low');
      return $boxes;
    }

    Look to the body class what kind of single you have : on my events there is : single-event – so for me the event is to activate
    the function name is anything you like but it is better to have something meaningful

    well i have made a section.php in which this is a checkbox to have audio or not.
    But it is some time ago. So i will see to update it to the newest enfold file.

    this here is an enfold 4.1 based sections.php : Download
    but it has allready the screenoptions dialog – i guess there weren’t changings till that. It works on my 4.2.3 Enfold
    Best is to have it in child-theme!

    But it is no frontend solution ( all browsers have on top in the tab a mute button)
    But you can choose to have audio or not

    click to enlarge

    in reply to: shortcode parser – new feature #912520

    thanks – can be closed

    in reply to: Position Title Bar below first element #912451

    We talk past each other – I do not want to change that globally, but have the opportunity to have the choice even on transparent headers to set the titlebar – even to be hidden.
    But i want to have the choice even for transparency header to have title bar !
    In other words : I do not want to be patronized if I want one or not
    or : as if the check from line 824/825 wasn’t there:

    		//deactivate title bar if header is transparent
    		if(!empty($transparency)) $header['header_title_bar'] = 'hidden_title_bar';

    Test your code – create a page with transparency and choose hidden title-bar. Now the title bar is there.
    on all tranparencies now – there is a title-bar.
    Without your code and show title-bar and transparency – titlebar is not there.

    is there a method to get rid of these two lines 824/825 with a filter via child-theme
    or is the only way to have that by copy the whole function to child-theme:

    if(!function_exists('avia_header_setting'))
    {
    	function avia_header_setting($single_val = false)
    	{ …
    in reply to: How to put a 3/4 column in the center of the page? #912439

    the link described above – you only wanted to have a container a bit smaller (75%) and centered?
    You dont want to place something left and right from it?

    than it will be easier to do this:

    place a 3/4 th column – give the custom class to it: three-fourth-centered

    do this to quick css:

    div.av_three_fourth.three-fourth-centered {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    see here https://webers-testseite.de/3-4th-centered/

    both methods will work if you read carefully

    in reply to: Displace logo #912381

    i love it if link to live page is there:

    .logo img { max-height: 135% !important }
    .logo, .logo a { overflow: visible }
    
    @media only screen and ( max-width: 767px) {
    .responsive .logo img { max-height: 100px !important }
    .responsive #header_main .container { height: inherit !important }
    .responsive #top .logo { display: block }
    .responsive #top #wrap_all .container.av-logo-container { width: 90%; max-width: 90% }
    }


    maybe you give my solution a chance – it overlaps the header area even on responsive case –
    and shrinks as expected

    that overlapping looks nice but i think if you choose the header with “Let logo and menu position adapt to browser window” on header-behavior
    will be a bit nicer.

    • This reply was modified 7 years, 9 months ago by Guenni007.

    if these are all portfolio items you got on your page you can use this if clause:

    if(is_singular('portfolio')) { …

    ismael : it still tries to find results:

    and by the way : the code from https://kriesi.at/support/topic/results-from-search-box-and-search-results-page-are-different/#post-907648

    leads to a 404 page on my installation too

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: Video self-hosted preview #912154

    And your own Server has less traffic ( Performance )

    in reply to: Video self-hosted preview #911983

    this is a nice tip – i put this into a text-block:

    
    [video src="/wp-content/uploads/meeting1035.mp4" loop="on" preload="auto" poster="/wp-content/uploads/screenshot-1.jpg"]

    and see here : https://webers-testseite.de/video/

    left shortcode from ismaels link above – second with image alb element (for lightbox open)

    in reply to: How to put a 3/4 column in the center of the page? #911981

    well if you don’t be satisfied with 1/5-3/5-1/5
    i would use this nevertheless ( with space between columns) and gave to the sourrounding container a custom class
    i choosed here : oneeighth-threefourth-oneeighth

    and than i would adjust the width of the fifth-columns:

    
    .oneeighth-threefourth-oneeighth .av_three_fifth { width: 9% }
    .oneeighth-threefourth-oneeighth .av_three_fifth { width: 75% }
    #top .oneeighth-threefourth-oneeighth .av-flex-placeholder { width: 3% }

    see here the difference on normal 5th columns and your desired aim

    https://webers-testseite.de/3-4th-on-center/

    in reply to: PNG Logo over Fullwidth Easy Slider #911967

    or you post a link to your page and we will have a look
    you can see here a working example: https://pirol-hifi.de/silbersand/
    but it would be better to adjust it for your page

    • This reply was modified 7 years, 9 months ago by Guenni007.

    is there a way to get rid of that ajax Search result suggestions

    i mean that it will not run !
    that will do it but it works in background.
    .ajax_search_response {display: none}

Viewing 30 posts - 8,941 through 8,970 (of 11,794 total)