Josue, this is similar to one of the bugs we are discussing here:
https://kriesi.at/support/topic/bugs-in-one-page-with-color-sections/
It works properly in this site: http://milestonementoring.com/ Built on Enfold 2.7!
But not here: http://milestonementoring.com/murphypsychologygroup/ Built on Enfold 2.7.1!
What’s the difference? What was changed? I do not want to update the live site until this is resolved.
Thank you,
-
This reply was modified 11 years, 10 months ago by
wintner.
Hi,
When I use HTML to modify my text withing the text box in LayerSlider, the preview shows the modifications and everything looks great. But the actual website shows nothing, not even the entered text. Is there a way to allow the code in the LayerSlider text box to take affect, and not be prevented or modified by Enfold theme?
Cheers
Only on one page or on all?
i would use a tranparent header and then use a color section on my page to get the background.
In the demo is an example with a slider instead of the color section:
http://kriesi.at/themes/enfold/homepage/transparent-header/
Hey!
You can try the Events Calendar plugin, which is compatible with Enfold:
http://tri.be/shop/wordpress-events-calendar-pro/
Cheers!
Josue
Hi,
mbstring is not phased out, is a non-default extension, but most servers come with this activated whichever is the PHP version. I personally use it with Enfold in a PHP 5.5 server.
Regards,
Josue
Hello Kriesi Team,
I do not understand but new release shows label pages with different formats.
For example, this label pages show entries first and the portfolio items:
http://solucionestecnologicasparaempresas.com/etiqueta/analitica-web/
http://solucionestecnologicasparaempresas.com/etiqueta/clasificacion-de-documentos/
http://solucionestecnologicasparaempresas.com/etiqueta/gestion-documental/
But this label pages show postfolio items first:
http://solucionestecnologicasparaempresas.com/etiqueta/flujos-de-trabajo/
http://solucionestecnologicasparaempresas.com/etiqueta/inteligencia-de-negocio/
I remember your team help me to format the label pages modifing enfold quick css:
.tag .post-title.tag-page-post-type-title {
border-bottom: 1px solid #e1e1e1;
padding-top: 10px;
margin-top: 10px;
padding-bottom: 10px;
margin-bottom: 10px;
}
Could you help me to configure all label pages like the first examples?
Thanks in advance, Raúl.
Hello Kriesi Team,
I have a problem with the last enfold release and sidebars.
Last portfolio items created with previous enfold release shows its page without sidebar:
http://solucionestecnologicasparaempresas.com/soluciones/clasificacion-inteligente-de-documentos/
http://solucionestecnologicasparaempresas.com/soluciones/copia-de-seguridad/
But new portfolio items created with new release appears with sidebar:
http://solucionestecnologicasparaempresas.com/soluciones/social-business-intelligence/
The design options in the item portfolio wordpress pages are different. Now in new release appear a new options configured with default sidebars, but there is not a no sidebar option.
Could you help me to configure portfolio items without sidebar?
Thanks in advance,
Raúl.
should be possible to use this: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
Then edit a page to place an icon, switch to the standard editor and copy the shortcode for the icon.
Then you should be able to paste it into your menu name.
I use Enfold to a company website.
Now the company wants to arrange conferences.
Is it possible to (ex. like a newsletter) to manage a conference:
fx lead people to suscribe on the webpage, administration of payments, information letters, lists and what else???
It it is not possible trough Enfold, can you recomment a system to work together with Enfold?
-
This topic was modified 11 years, 10 months ago by
benteasbjorn.
Hello again :)
That is because the table heading font is to big. So the table can not shrink any further.
you can use quick/custom css to reduce the font size and the padding:
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
@media only screen and (max-width: 430px) {
.avia_codeblock th {
font-size: 12px;
padding: 9px 5px;
}
}
That reduces the font size and padding when the display/window is less then 430px wide.
.page-id-2 .avia-builder-el-9 .entry-title {
font-size: 18px;
}
ich empfehle auch custom classes: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
dann würde das so aussehen:
.your_class .entry-title{
font-size: 18px;
}
Und es wäre unabhänging von der page und element ID.
You can simply adjust the text size with CSS: http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
#top .av_toggle_section .toggler {
font-size: 18px !important;
}
you can add other properties as well:
http://www.w3schools.com/css/css_text.asp
http://www.w3schools.com/css/css_font.asp
Hey fredengl!
1) Yes, the fixed layout is just 960px by default. If you want to change it add this code to your child theme style.css file:
.container {
width: 910px;
}
/* Base Grid */
.container .one.unit,
.container .one.units {
width: 30px;
}
.container .two.units {
width: 110px;
}
.container .three.units {
width: 190px;
}
.container .four.units {
width: 270px;
}
.container .five.units {
width: 350px;
}
.container .six.units {
width: 430px;
}
.container .seven.units {
width: 510px;
}
.container .eight.units {
width: 590px;
}
.container .nine.units {
width: 670px;
}
.container .ten.units {
width: 750px;
}
.container .eleven.units {
width: 830px;
}
.container .twelve.units {
width: 910px;
}
and change the width of the container from 910px to a higher width. You also need to increase the grid unit widths accordingly – they’re based on a 12 column grid structure – i.e. if you increase the container width from 910px to 1010px (+100px) the twelve units value will also increase to 1010px and the .six.units value increases from 430px to 480px (because 6 columns cover the first half of the container area).
2) No, the responsive mode will always adjust the layout based on the current resolution and viewport.
3) No, you can’t select different header layouts for different pages. There’s a general setting (Enfold > Theme Options > Header) which determines the header type of the entire website.
Regards,
Peter
I suggest the use of custom classes.
First you have to enable them with this tutorial: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Then you write your CSS class (you can choose to put it into quick css, custom.css or use a child theme)
quick/custom css: http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
child theme: http://vimeo.com/67221517
You have to write something like this:
#top .my_bordered_box {
border:1px solid #000000;
}
Then edit the text element on that page.
There will be a new field called “Custom Css Class”.
Enter the name of the class you created (my_bordered_box)
You can simply put in more properties into your custom class like this:
#top .my_bordered_box {
border:1px solid #000000;
background-color: #cccccc;
box-shadow: 5px 5px 5px #888888;
}
Hi!
Personally I recommend to place this code into the child theme functions.php. If you want to place it into the parent theme file (enfold/functions.php search for this code at the very top of the file:
<?php
global $avia_config;
and replace it with
<?php
global $avia_config;
add_action("avia_builder_mode", "builder_set_debug");
function builder_set_debug() { return "debug"; }
Best regards,
Peter
yes, It is a slider.
You simply have to create a layer slider and then place it on your page where ever you want.
The green one is included in the enfold theme as an example so you can see the settings.
You can access the layer slider through your admin sidebar on the left.
http://kriesi.at/themes/enfold/pages/services/?skin=Boxed%20Blue
How did you get the green animated header area on this page and can each page have a different one? It appears to be a slider.
Thanks
Hi There – I’m trying to add a full screen slider to this page http://shortiedesigns.com/site/ and I can’t find where to add the captions so I can have some text and a button on the left (i’ve done it before but now I can’t seem to find the settings) I want it to be like the full screen slider page you have on the demo site
http://kriesi.at/themedemo/?theme=enfold
thanks
Hi there!
How do I do a replicate of home v10 magazine the first slider on the top as can be seen from enfold theme demo?
Regards,
Kayzel
This reply has been marked as private.
This reply has been marked as private.
Hello,
I did all the above, but it didn’t work.
In wp-config.php, I used:
define('WPLANG', 'ar')
I replaced the two lines mentioned by @Ismael with:
wp_enqueue_style( 'avia-rtl', get_template_directory()."/css/rtl.css", array(), '1', 'screen' )
in both enfold and enfold-child themes.
Please help on this issue
Thanks and regards
-
This reply was modified 11 years, 10 months ago by
mndawood.
Hello!
Both plugins (WooCommerce and WordPress SEO) are fully compatible with Enfold, it seems to be more of a WordPress/server issue rather than a theme one, unfortunately is out of the support scope we offer, try contacting a specialist.
Cheers!
Josue
Hi Omnyss!
Request it as a feature:
https://kriesi.at/support/enfold-feature-requests/
In the meantime you can try using the Sharebar plugin, it allows you to add custom buttons
http://devgrow.com/sharebar-wordpress-plugin/
Regards,
Josue
Hello!
I have just bought a currency converter.
http://www.woothemes.com/products/currency-converter-widget/
I’m now trying to place the widget on the right at the product pages, in a right sidebar.
This seems not to be easy, and there for i need some help. As far as i can manage the widget only get’s pushed under the content to the left. See one of the pages here; http://www.turnclear.com/produkt/porsche-944-turbo-s2/
Is there any limitations in enfold of using right sidbars on single product pages?
I also would like to know how i can place the currency buttons on one row and not under each other?
Thanks in advance.
-
This topic was modified 11 years, 10 months ago by
jockejansson.
1-3:
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
#header_meta {
background-color: #000000;
}
#header_meta .social_bookmarks li {
border: medium none !important;
}
#header_main {
border: medium none !important;
}
4: add “[nolink]” at the end of your footer text.
This reply has been marked as private.
Hi!
Done:
http://www.jasminesboutique.co.uk/
Seems the code only works if you have not set a logo here.
But i modified the code so it will show the other in non-home pages:
<?php
function av_change_logo_url($url) {
if(is_front_page()){
$url = "http://www.jasminesboutique.co.uk/wp-content/uploads/2014/05/logoWeb1.png";
}else{
$url = "http://www.jasminesboutique.co.uk/wp-content/uploads/2014/05/logoWebCIRCLE.png";
}
return $url;
}
add_filter('avf_logo','av_change_logo_url', 100);
Cheers!
Josue
Is that how the sliders were done on these two pages?
http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/
http://kriesi.at/themes/enfold/homepage/home-v9-videos-and-parallax/
(I ask because the slider at the top of the page seems to exhibit a parallax effect when the page is scrolled.)