Forum Replies Created
-
AuthorPosts
-
January 12, 2017 at 1:58 pm in reply to: Is it possible to move copyright footer under navigation #732642
hm – TiVo and design your website. :wink
Please get familiar with working on child-themes. It is for working with codes snippets the best Solution – because updating the parent theme does not influence those changings!
Look here on enfold documentation:
Download a preset Child-Theme : http://kriesi.at/documentation/enfold/downloads/
Infos on how to: http://kriesi.at/documentation/enfold/using-a-child-theme/. with good instructions.the great advantage of child-theme functions.php ( if you download the preset- there is allready an empty one) is that it does not replace the parent-theme functions.php – it can add things to it.
( So if you got f.e. a copy of header.php file in your child theme folder it will totaly substitute the parent-theme file )On Enfold Documentation there are a lot of snippets which can help you to make some important changes. And a lot of hints and advices here on Support Forum do use this method.
_________________
This code snippet here:
add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'header' ); }
comes to child-theme functions.php file. (you can make the changings via Dashboard/Appearance/Editor
on left side there are a list of files in child-theme folderTo input some broken codes here into functions.php can have the result that you only see a white page – than you only have the possibility to redo those entries by ftp down/upload the working file.
But if you do copy paste carefully the code it will work in most instances
So the code above registeres a widget area on a certain place (here i called it header)
if you than goto widgets and create the new widget (name: header) everything you put in that widget area goes to that area of enfold.Enfold got a lot of those possibilities to “hook” ( they often marked like:
do_action('xxxxxxxxx')
) where we can insert some code
in this case it is thehelper-main-menu.php
because the place of your desired area was created here – i looked into that php.you see on that demo page that the 1/3 solution in front works to (if you set it to 26% its perfect)
By the way – on new enfold there is for each column the possibility to set a mobile behavior in options dialog.
and it has to be 2 1/5 ! Just a silly question why not 2 1/4
(it is easier to handle)you can manage the width than via custom class see here : https://webers-testseite.de/ikom/shadow/
i set up 4 1/4th columns and give each a custom class (the columns itself) you see the class inside as heading.
and than i setup a custom width for them ( just a bit maths)div .av_one_fourth.innen { width: 15% !important; } div .av_one_fourth.aussen { width: 26% !important; }
the space between is set by enfold to 6%. so on 3 spaces you have to manage the rest to 82% (or for a pair of “innen” and “aussen” 41%) (26+15)
the normal width for a fifth column is 15.2%. so nearby.The only thing is you have to make some rules again for responsive case
( on that test page my mobile starts at 990px)
@media only screen and (max-width: 990px) { div .av_one_fourth.innen { width: 100% !important; } div .av_one_fourth.aussen { display: none !important; } }
- This reply was modified 7 years, 10 months ago by Guenni007.
And by the way – i uploaded your video to youtube – normal without beeing a special member – it works
and if you input the code in this way: https://videourl?rel=0&autoplay=1&loop=1&autopause=0
it works in safari.So thats all from me – i will now delete the youtube upload ! thanks for your patient listening!
And i delete the selfhosted upload now.Solution for you might be :
buy or wait til enfold updates Layerslider
upload your video free to youtube – very simple and embed the video with settings above.- This reply was modified 7 years, 10 months ago by Guenni007.
well i got the Layerslider Vers. 6 – and on that (hope Enfold would soon update that part) it is possible to declare a video as Slider Background !
Look here the selfhosted video of your vimeo file. – I will delete it after you have seen it on Safari looping !
i will try now to look if a vimeo link will do the job too.https://webers-testseite.de/ikom/video/
Edit: it does not work with vimeo hosted file! on that solution
And great advantage is that the slider is responsive !- This reply was modified 7 years, 10 months ago by Guenni007.
do you have a third party maps plugin working?
for detailed map i use Chris Richardsons Map Press Pro. but both are loading there own api on different places.
Some Event Plugins comes with Event Place and an own loading of google map api.
so i think first of all try to deactivate all plugins an look if it works.on google maps api registration – the inserted urls lost there asterix after the url. ( *abc.com/* ) after saving.
on input field you have to input the asterix and after it a spacebar ! this will avoid deleting the asterix.Allmost every installation of mine works well – but sometimes i had to input urls which are property prooved from google
i don’t know why – but sometimes it helps to get it run:- This reply was modified 7 years, 10 months ago by Guenni007.
January 10, 2017 at 2:04 pm in reply to: Can I change the info in the footer and take away the Enfold Kriesi name. #731554i guess it is not important where the nolink – shortcode is placed
by the way – this snippet should be part of the enfold documentation – because the question occurs frequently
and btw 2 : the theme demo theme options download should be updated – only 10 of 26 are available yet
yes but as mod you have to be fast – and those demos with screenshots costs a lot of time.
Only other participants – maybe working on similar problems can do that.
Your welcomeJanuary 10, 2017 at 10:35 am in reply to: Is it possible to move copyright footer under navigation #731489see here : https://webers-testseite.de/weber/foto/
by the way this is part of a test of the medical theme demo ! Just for you – the switch to left navigation and dark. :lol
make some fun and press another button in menu. Enfold switches than to normal layout (only foto is styled that way)btw: for the responsive case – i think we have to find a different place ? shrink the window above to see
- This reply was modified 7 years, 10 months ago by Guenni007.
by the way – i see that the column padding has no active link – so it might be better to have no padding here – and to set the padding to the content.
so i gave to those contents a custom class (columnlinkpadding) and gave the link a hover style:
.column-link a { display: block; height: 100%; width: 100%; } .column-link a:hover { box-shadow: 1px 1px 5px #333; } .column-link div { display: inline-block; } .column-link .columnlinkpadding { padding: 5px 30px; }
But : A link in that column works but destroys the construction. (by the way a link in a link is not valide code)
this might work – do not forget to mark that little field “Deactivate Scheme org markup” (otherwise you have a lot of surrounding containers to the code block) :
looks this way:
i give those 1/2 columns a custom class ( column-link) and set up :
.column-link a { display: block; height: 100%; width: 100%; } .column-link div { display: inline-block; }
you can see it here: https://webers-testseite.de/ikom/neu/
each column is a link and works even for the whole area ( thats why the css is necessary)
to have side navigation with next prev arrows only in one category you have to place in your child-theme functions.php :
add_filter('avia_post_nav_settings','avia_same_category_filter', 10, 1); function avia_same_category_filter($settings) { $settings['same_category'] = true; return $settings; }
why you are not seeing them now i cannot say because i do not see the link to your site.
Maybe you are using on that post a fullwidth slider – for that case you can use in child-theme functions.php :add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1); function avia_remove_fullwidth_slider_check($settings) { $settings['is_fullwidth'] = false; return $settings; }
if you want to change the directions ( for me it is more logically when going to the right side it comes next entry ) :
add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); function enfold_customization_postnav($entries, $settings) { $entries['prev'] = get_next_post($settings['same_category']); $entries['next'] = get_previous_post($settings['same_category']); return $entries; }
January 9, 2017 at 7:36 pm in reply to: Is it possible to move copyright footer under navigation #731252i would use the option to make a header widget area in child-theme functions.php:
add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'header' ); }
than call a new widget area “header”
you can use the copy right info area for something else or leave empty.
place a text widget in that new area with your desired info :
© 2016 All Rights Reserved. [TiVo Designs]
the rest is a bit css to style ityou have to look what widget id is it in your case:
#text-11.widget_text .textwidget { color: #fff; font-size: 11px; margin-left: 13%; }
the margin-left is the value of navigation li
if you only like to have this on front-page it is possible to set an if clause above only for front-page!
or to use f.e. “restrict widgets” there you can set that this text in header-widget is only shown on front-page.- This reply was modified 7 years, 10 months ago by Guenni007.
and what do you do with all those “Touch-Screen-Junkies” visiting your site? (All mobiles, ipads, other touchpads etc.)
If they “Scroll” down they will press the “Link” immediately – because color-section width is the screen-width.
That is the reason why the google map (if placed in a color section) in enfold has the opportunity to set the pointer-events to nothing.so this is based on the demo “Enfold Medical” – and i think that something went wrong by importing the demo.
everything seems to be in place _ in source code i can see : “Mijn mestafzet is direct eenvoudiger geworden dankzij de Keydollar mestscheider”
and there is an image (edze-agra-home …) in the slider on top. First i thought there is a color setting to white which overwrites your testimonials – but.if you try to import the demo again ( dont do it) everything is overwritten than – maybe that will fix it.
Just wait on a mod here and give them your account datas – maybe they can see from inside what was going wrongi can not remember if there was in former times a button called “Send My Application”
it looks strange to contact form 7January 9, 2017 at 6:09 pm in reply to: Specify font size for only blog index and blog posts #731223so if it is only concerning to blog and single posts in blog:
.template-blog .entry-content p { font-size: 18px; line-height: 30px; }
maybe an !important is necessary
.template-blog .entry-content p { font-size: 18px !important; line-height: 30px !important; }
- This reply was modified 7 years, 10 months ago by Guenni007.
the selector should be:
.title_containerso f.e:
.title_container{ background: #fff url ( ); }
January 9, 2017 at 2:19 pm in reply to: Specify font size for only blog index and blog posts #731136well have a look here: http://kriesi.at/themes/enfold/blog/blog-single-author-big/
this is not the single blog post. It is a style to present the different posts. If you click one of them it goes to the posts.
What p tag would you like to change both – the one without the other . etc. ppthe best way for us is to have your site link. – and a hint what to change
- This reply was modified 7 years, 10 months ago by Guenni007.
January 9, 2017 at 1:35 pm in reply to: Can I change the info in the footer and take away the Enfold Kriesi name. #731122after you have inserted your copyright infos add at the end : [nolink]
f.e.
© Copyright: jessica petroff [nolink]
http://kriesi.at/documentation/enfold/change-the-footer-text-and-link/
January 9, 2017 at 1:17 pm in reply to: Einfacher Slider – H2 Tag entfernen und eigene css-Klasse einfügen #731112by the way i remember a thread – where someone wants to have the choice to set up the h-tag (for him to have the h1)and to have the oportunity to set the font-size:
https://kriesi.at/support/topic/h1-avia-caption-title/
it will look than this way:
btw: i refreshed those three files with a little instruction text. Zip Archive here
- This reply was modified 7 years, 10 months ago by Guenni007.
if you realy got the same thing as in the online Demo of default Theme you are a lucky guy. A lot of people would like to have this feature – that visitors of our site can choose the theme color mode.
This is only for demonstration the color preset modes to know what possibilities are given in enfold options dialog.
This has nothing to do with sidebar of the theme (where you place widgets etc.)if you are using a child theme – the update Process shouldn’t influence it at all.
You don’t have to switch to enfold parent theme – let the child theme be active and update the parent theme – thats all.
I prefer the ftp method – just overwrite all files of enfold.
All Settings are saved in child-theme and under WordPress wp-content / uploads / dynamic-avia folder.
So there was no need to save the theme settings file and upload it again.btw. there are allways upload buttons even if you have allready uploaded one (Just in case you like to change it). Do you see under the Upload button your inserted logo?
January 8, 2017 at 6:13 pm in reply to: Einfacher Slider – H2 Tag entfernen und eigene css-Klasse einfügen #730885gib dem Slider eine benutzerdefinierte classe und selektiere dann das h2 über diese Klasse.
wie man die custom Classes aktiviert : http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
dann:
.customclass h2 { font-size: 18px; }
was du da als Klasse nimmst bleibt dir überlassen
wenn du noch Bildtext hast der ist dann im p-tag enthalten also:
.customclass p { font-size: 14px; }
- This reply was modified 7 years, 10 months ago by Guenni007.
January 8, 2017 at 6:06 pm in reply to: Specify font size for only blog index and blog posts #730882it depends on what you want to enlarge – only the font-size of p tag when single post is shown – or do you want the p tag be enlarged allready in the category blog list style ( with excerpts ) etc.
so there is a class “sinlge-post” for all posts on body there is a class (even in category listing) “post-entry” etc.
you can use these depending on what to do.
.single-post p {font-size: 18px !important}
or
.post-entry p {font-size: 18px !important}
etc pp. every class which only comes up if your desired changings appear will be the specific selector.
On Portfolio case the class added to body was “single-portfolio”and how do i make it clearer that this here is a vimeo video:
https://webers-testseite.de/ikom/full-slider-with-content/
placed as background in color-section and it does loop in Safari (iMac and MacBook OSX Sierra)So i’m looking to – what is the difference on those two videos ? Both on vimeo – both as background !
And by the way concerning to ipad, iphone etc: https://help.vimeo.com/hc/en-us/articles/224983008-Defaulting-playback-for-embedded-videos
Important: Please be aware that autoplay and loop will not work on most mobile devices.
- This reply was modified 7 years, 10 months ago by Guenni007.
https://developer.vimeo.com/player/embedding
If the owner of a video is a Plus member, some of these settings may be overridden by their preferences.
for the uber menu you have to make different changes to make it fit to enfold.
One of these changings are in helper-main-menu.php – did you changed it back to normal enfold helper-main-menu.php ?
a lot of css fixes have been made too. You do all deleted them?but different movies do loop on background with vimeo and Safari? – So where is the difference ?
https://webers-testseite.de/ikom/full-slider-with-content/
this is a vimeo video inserted as background video to a color section.My suggestion was that your video is not a public one – like the one in the example above.
Btw : this seems not to be a problem with Enfold than with Safari or IOS devices. Google is full of questions concerning to that loop-problematic.
-
AuthorPosts