Forum Replies Created

Viewing 30 posts - 10,291 through 10,320 (of 10,882 total)
  • Author
    Posts
  • in reply to: Enfold Theme nur eine Schriftart verwenden #580342

    try to set the important rule.

    body, body p, a, pre, strong, quote, h1, h2, h3, h4, h5, h6 {
    font-family: "Times New Roman" !important , Georgia, Serif;
    }
    in reply to: Submenu on IPad does not fade out after click #580290

    hi Ismael : as you can see it here: https://kriesi.at/support/topic/submenu-on-ipad-does-not-fade-out-after-click/#post-576287

    i have the normal main navigation on my ipad retina – if you hover concept and click one of those links (and maybe this is the point : these are anchor links on the same page) the dropdown does not close after click (as it is on pc or mac ) on ipad it stayes open scrolling down to the anchor link but dropdown still open.

    PS: unusual position – maybe – but Customer Whishes have to be fullfilled !
    sorry.
    PPS: why it is normal ? By hovering and clicking on my homepc or mac Browsers the dropdown closes immediately after going out of that field with the mouse button.
    Only on Ipad it does not because there is no mouse button! So maybe it would be nice to close the dropdown after clicking the link!

    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: Adding a second menu above the main menu #580277

    i can not see your site but try this here:

    #top #header_meta {
        border-bottom:  none !important;
    }
    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: Error en el enlace de iconos sociales #580274

    look here f.e. to get it from 30px to 50px

    go here

    #top .social_bookmarks {
        height: 50px;
    }
    
    #top .social_bookmarks li {
        width: 50px;
    }
    
    #top .social_bookmarks li a {
        line-height: 50px;
        min-height: 50px;
        width: 50px;
    }
    
    .social_bookmarks li > a::before {
        font-size: 30px;
    }
    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: Social Icon color #580266

    the background color font color by hovering these icons is made for each icon f.e.

    
    #top #wrap_all .av-social-link-twitter:hover a {
        background-color: #46d4fe;
        color: #fff;
    }

    but you have to do it for each icon – so you have to know the name of that social-link ( in that case above it is easy “twitter”)

    the font color of the icons are set by:

    .social_bookmarks_twitter > a {
        color: #900 !important;
    }

    but you see here too. It has to be than for each social-link

    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: Header and main body. #580257

    you have to have the content which should overlap in a row ( could be even a 1/1 )
    on that edit column / row settings there is on the bottom a thing called : Custom top and bottom margin – check that and put in a negative margin !

    in reply to: Set header default for ALL pages #580238

    i use firefox with firebug plugin (today a lot of browsers including firefox have their own tools for that)
    clicking on the contextmenu of your mouse (mostly it is a right button of the mouse) and than goto firebug.
    A new tab or i like the new window is opend with all info of your source code.
    Hovering on the right side f.e. a div it will be highlighted on the left. So the source code i wanted was the section on top because this it is i want on my searchresults page too!
    When the section i want is highlighted you only have to copy on the right side the whole code (in this case it is the whole div with av_section_1 id.

    this is the code to go to “here comes the content”

    see here a page: http://webers-testseite.de/enf02/header-layout-for-search/
    and here are the search results-page: http://webers-testseite.de/enf02/?s=oh+it+works

    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: Set header default for ALL pages #580208

    i have this set for my search site and asked the question too for transparency headers here:

    https://kriesi.at/support/topic/header-on-search-sites/

    so for search site ad this to your child theme functions.php:

    add_filter('avf_header_setting_filter', function($header) {
    	if ( is_search() ) {
    		$header['header_transparency'] = 'header_transparency header_glassy';
    		$header['header_class'] .= " av_header_transparency av_header_glassy";
    	}
    	return $header;
    }, 10, 1);

    it is not difficult to include is_category or is_single etc

    here is discussed it for single event page:

    https://kriesi.at/support/topic/styling-single-events-page/

    but this is only the half thing – because on searchresults-page (or other dynamic pages) there is no chance to edit the layout for a header:

    so you have to get content into it via:

    add_action('ava_after_main_title', function() {
    if ( is_search() ) {
    	?>
    here comes the content
    <?php
    }
    });

    the here comes the content you must change it to your desired content
    i have styled one page and looked to the source code of it and via copy paste i got this insertion.

    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: Video not playing in color section – opens Youtube #578810

    you see my link http://webers-testseite.de/enf02/video-in-colorsection/

    i thought this is what you described above

    The settings are:
    – standalone icon with border and optional tooltip
    – link set manually (youtube link)
    – open in same window
    – align center
    – custom color

    and to make the lightbox bigger:

    .mfp-iframe-holder .mfp-content {
        line-height: 0;
        max-width: 1200px;
        width: 100%;
    }
    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: CSS is not working after moving to child style.css #578808

    btw:

    /*
    * PLEASE DO NOT EDIT THIS FILE!
    *
    * This file is only in your themefolder for WordPress to recognize basic theme data like name and version
    * CSS Rules in this file will not be used by the theme.
    * Instead use the custom.css file that is located in your themes /css/ folder to add your styles.
    * You can copy a style rule from any of your css files and paste it in custom.css and
    * it will override the original style. If you just want to add small css snippets you might also
    * want to consider to add it to the designated CSS option field in your themes backend at: Theme Options->General Styling
    */

    this is from style.css of enfold theme so try to use custom.css instead

    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: CSS is not working after moving to child style.css #578797

    yes i know what you want. you try to let the quick css empty and transform the whole thing to Child Theme style css.
    But all those settings on Enfold Options are most language specific too!
    So you have to change it for every language again. My advise is made by 3 or 4 clicks with your mouse (for each language)

    ______

    do you really be sure that they don’t work – or are they overwritten by a more specific rule.

    f.e. in your child theme style.css you set a rule :

    #header a { color: #900}

    but via Enfold Options the main menu color is set via the class: header_color

    this is the more specific rule (only the important setting may overwrite this rule)
    so have a look via Webdeveloper Tools or equivalent tools if your style.css rule exists or not

    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: special charakters in testimonials #578796

    no Yigit on that one page the fault still exists – but i had to put in something without apostroph because it is a customer website – so i cannot make any experimental proovements.

    in reply to: Video not playing in color section – opens Youtube #578783

    try to add to your video link this: ?iframe=true

    so for example

    https://www.youtube.com/watch?v=Qz7JOXTeeBo?iframe=true

    look here: http://webers-testseite.de/enf02/video-in-colorsection/

    second button has a tooltip

    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: size of footer widget and line #578524

    there are two rules which determins the height:

    #footer {
        padding: 10px;
    }
    #footer .widget {
        margin: 0;
    }
    #footer.container_wrap {
        border:  none !important;
    }

    you have to play a little with those values – perhaps it is necessary to set these rules to ” !important “

    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: Layerslider Not Saving #578513

    the pngs have more than 1,5MB thats to much.
    the jpgs instead have about 100kb

    woudn’t it be a nice idea to place the background and your transparent looking fields “Click to register” come flying in or fade in – in this case that little Click to register must be a png

    in reply to: Layerslider Not Saving #578512

    by the way (offtopic) the images are pngs ! without the use of transparency you should better use jpgs without making anything to your picture
    this here is one jpg – if you use instead you can save a lot of traffic

    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: c4p_log/log-4756/ #578468

    did you install this plugin here on your installation ? https://de.wordpress.org/plugins/custom-404-pro/
    if you don’t need that plugin – delete it

    in reply to: How do you create a featured video image on a video post? #578462

    well with masonry it does not work in the way you like it. It is only an image showing (perhaps because ajax or something else)
    i created a page with advanced layout builder as you can see on the first image. On that blog entry element you can choose the category of your blog.

    on the post with that little featured video you got from that plugin an extra field where you can insert your link or press that little button for selfhosted videos.

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

    these two are a “different kettle of fish”
    the contact form of enfold is very nice and now in most cases i use the alb element!

    in reply to: Round Logo: change size – overflow #578421

    here you can see my solution:

    http://www.pirol-hifi.de/

    this works with shrinking header too

    in reply to: special charakters in testimonials #578386

    hm it is just on one installation

    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: CSS is not working after moving to child style.css #577888

    All the other enfold options don’t affected by only copying the quick css to the other language – so my tip choose your default languag (polish) export theme settings file – change language – import theme settings file

    in reply to: CSS is not working after moving to child style.css #577775

    how do you achieve the different languages – via WPML ?

    on WPML the Enfold Options dialog is in correlation to each language. It means, that every Language has its own Enfold Options. Even the landing Page could be different.

    if i have to install a multilanguage site i start finishing the site for one Language – than i go to import/export of Enfold an export the theme settings file than change the language ( on top of enfold options dialog there are the flags – or a left tab will show you on which language you are) and import that theme settings file.

    If you have different rules for each language there is no other way to export each manually paste it in that field

    and another hint : how did you place the shortcode of contact form 7 into enfold page.

    I do it in a text field

    perhaps try first to erase that text field and put in a new one with the shortcode.

    why are in Asunto these sqare brackets ? is it a field on your form and you insert here the return value?

    if it has no value because this has no correlation to your form – maybe this is the reason why !

    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: Adding a second menu above the main menu #577685

    Dashboard – Enfold (or Enfold Child if so) – header tab – there you see extra elements.
    Here you can set “secondary menu” (here you can choose – top bar in the left)

    than goto Dashboard – Appearance – Menu
    build another menu and set it to “Enfold Child Secondary Menu” like in your example on top left side (banana, navy …)

    2) to place an image instead of text you can insert here on the menu a custom link
    on that custom link you can insert in the field “navigation label” the image link like:
    <img src="http://homepage.com/home.png" alt="home" width="30" height="30" />

    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: Layer slider problem #577682

    do you have some caching or at least bwp minify plugin installed ?

    did you have some caching plugins installed – if so delete the hole cache content and try again!

    in reply to: How do you create a featured video image on a video post? #577655

    sorry thats all i can find for it.
    Maybe the admins have an idea

    • This reply was modified 8 years, 9 months ago by Guenni007.
    in reply to: How do you create a featured video image on a video post? #577653

    hm – look here http://webers-testseite.de/enf02/featured-video/

    on the masonry it does not work – on blog post : yes

    (i deleted the video in “entry with post format video” and set up the youtube video as featured one)

Viewing 30 posts - 10,291 through 10,320 (of 10,882 total)