Forum Replies Created
-
AuthorPosts
-
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; }
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.
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.
look here f.e. to get it from 30px to 50px
#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.
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.
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 !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.
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.
February 5, 2016 at 10:23 pm in reply to: Video not playing in color section – opens Youtube #578810you 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 colorand 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.
February 5, 2016 at 10:20 pm in reply to: CSS is not working after moving to child style.css #578808btw:
/*
* 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.
February 5, 2016 at 10:09 pm in reply to: CSS is not working after moving to child style.css #578797yes 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.
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.
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.
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.
the pngs have more than 1,5MB thats to much.
the jpgs instead have about 100kbwoudn’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
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.
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 itFebruary 5, 2016 at 12:53 pm in reply to: How do you create a featured video image on a video post? #578462well 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.
February 5, 2016 at 12:41 pm in reply to: Contact Form, I can´t change the email in which I receive the messages #578458these 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!hm it is just on one installation
- This reply was modified 8 years, 9 months ago by Guenni007.
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
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
February 4, 2016 at 12:25 pm in reply to: Contact Form, I can´t change the email in which I receive the messages #577724and 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.
February 4, 2016 at 11:30 am in reply to: Contact Form, I can´t change the email in which I receive the messages #577693why 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.
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.
do you have some caching or at least bwp minify plugin installed ?
February 4, 2016 at 10:35 am in reply to: Contact Form, I can´t change the email in which I receive the messages #577670did you have some caching plugins installed – if so delete the hole cache content and try again!
February 4, 2016 at 9:45 am in reply to: How do you create a featured video image on a video post? #577655sorry thats all i can find for it.
Maybe the admins have an idea- This reply was modified 8 years, 9 months ago by Guenni007.
February 4, 2016 at 9:39 am in reply to: How do you create a featured video image on a video post? #577653hm – 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)
-
AuthorPosts