I have a screeshot on the page I created (link in the private content) for the issue I have, can’t understand how you cannot see it..?
Anyway the problem is the same: I need the top padding the same as the bottom padding, and it seems I cannot do that.
I even cloned the first color section at the top of the page but the copy has a lot more space below
Hi teme,
We’re glad that Basilis was able to help you. Do you need further assistance on this topic, or can we close this thread?
Thank you for using Enfold!
Sarah
I have solved! in the avia.js line 791:
if(container.length)
{
var usersviewportWidth = $(window).width();
if(usersviewportWidth > 767 ){
var myOffset = 150;
} else {
var myOffset = 0;
}
var cur_offset = the_win.scrollTop(),
container_offset = container.offset().top,
target = container_offset - fixedMainPadding + myOffset,
The myOffet variable must set with specific pixel height, in most case 150px.
Can’t seem to understand how to upload an image here.. anyway I created a page
I don’t need the space removed, I need the space at the top to be the same color as the other one..
Thank you for your answer
Hi craig_corfield,
You can add the code like this
#av-masonry-1 .av-masonry-container.isotope {
height: auto !important;
}
If you need further assistance please let us know.
Best regards,
Victoria
Hello,
thanks to your support in this ticket https://kriesi.at/support/topic/div-title-height-and-colour/
we have extended the header to full width with
#header .container {
max-width:100% !important;
padding:0 !important;
}
but I would like to keep the mega menu to his normal size. How to do that?
Thank you Mauro
Hey Revoluza2013,
Here are the threads with solutions for you:
If you need further assistance please let us know.
Best regards,
Victoria
Hi there, first ticket here, asking for support
This is the page I’m trying to create:
(link private?)
I’m trying to simply create the same color section as above (the one with the text), below (the other one with the text).. but obvioulsy I can’t, it seems to add some pixels to the bottom padding no matter what I try. So I added some code found here, and the best one resulted in this, as you can see: a white space at the top.
What should I do?
Hi Rikard,
Thanks. I changed the color and it works now. You can close this topic.
Hey!
Instead of Fullscreen Slider, please try using Color Section element with custom background image instead :)
If you would like to add whitespace to the top, you can use Separator/Whitespace element :)
Best regards,
Yigit
Hi,
You can try using the code as following
@media only screen and (max-width: 1024px) {
#header_meta {
display: none;
}
.responsive .logo {
top: 20px;
}
}
It will be applied on screens smaller than 1024px. You can adjust the value as needed :)
Best regards,
Yigit
Hi Yigit,
Thanks! code works as expect. How to fix this for all mobile and tablet screen. non desktop and laptops.
Please help us.
Hi there,
I tried to modifiy my website by inserting the following code in the Quick CSS:
@media all and (min-width: 960px) {
h1{
font-size: 50px;
}
}
@media all and (max-width: 959px) and (min-width: 600px) {
h1{
font-size: 40px;
}
}
@media all and (max-width: 599px) and (min-width: 320px) {
h1{
font-size: 30px;
}
}
I want to specifiy all the different headlines to have a specific size…but even this simple modification didn’t work out. On desktop yes, the size was modified – but on all mobile divices I’ve tried there was no change whatsoever… Do I have to get this in the custom.css file? But it should work via Quick CSS as well, right? Or have I missed some simple thing?
Thanks Paul
Hi,
- I add the code to functions.php in child theme
- I activate the child theme
- The error is that I see the code in my backend and also on top of the website frontend.
I tried this code from thread https://kriesi.at/support/topic/different-logo-for-every-language/:
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo)
{
$lang = pll_current_language('locale');
switch ($lang) {
case 'en_US':
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
break;
case 'af':
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
break;
}
return $logo;
}
I tried this code from thread https://kriesi.at/support/topic/different-logos-in-different-languages/:
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo)
{
$currentlang = get_bloginfo('language');
if($currentlang=="en-US")
{
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
}
if($currentlang=="fr-FR"){
{
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
}
return $logo;
}
And I tried this code from thread https://kriesi.at/support/topic/polylang-logo-changer/:
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo)
{
$lang = pll_current_language('locale');
switch ($lang) {
case 'en_US':
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
break;
case 'af':
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
break;
}
return $logo;
}
Please find in private a temporary account for WP and FTP
-
This reply was modified 8 years, 10 months ago by
mustmedia.
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
@media only screen and (max-width: 767px) {
#header_meta {
display: none;
}
.responsive .logo {
top: 20px;
}
}
Best regards,
Yigit
Hey boonkernels,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
.avia-builder-el-30 .woocommerce-loop-product__title {
color: #fff;
}
#top #wrap_all .av-product-class-minimal-overlay a:hover .inner_product_header {
opacity: 1;
background: rgba(0,0,0,0.25);
}
#top #wrap_all .av-product-class-minimal-overlay .inner_product_header {
background: rgba(0,0,0,0.55);
}
If you need further assistance please let us know.
Best regards,
Victoria
Hi,
Thanks for providing the login details. I have checked Masonry Gallery and it’s working fine, I have created a test page with masonry gallery and there’s no problem with it (link in private content). However, if it’s on the networking page, it doesn’t show up, to fix it I have added this css code in Quick CSS (located in Enfold > General Styling):
.page-id-4567 #av-masonry-1 .av-masonry-container.isotope {
height: auto !important;
}
Let us know if it’s good :)
Best regards,
Nikko
Hi guys
On my website, I have some problem with items aligning to the left and not to the right (RTL mode)
Please have a look ate this page: http://a3730-tmp.s48.upress.link/?page_id=708
the class responisbale is av-masonry-entry isotope-item post-712 portfolio type-portfolio status-publish has-post-thumbnail hentry portfolio_entries-service portfolio_entries-adullts av-masonry-item-with-image av-grid-img av-masonry-item-loaded
How to change and what to change please? I want the element style to say “right” instead of “left”
Hey dweddell,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
#top #header .av-menu-button > a .avia-menu-text {
margin-left: 5px !important;
}
Hope this helps :)
Best regards,
Nikko
Hi,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look.
Also, please refer to this thread for a possible solution.
Best regards,
Victoria
Hi Jordan,
Thanks for getting back to me
That makes no difference.
I changed the code to
.av-siteloader{
margin-left:565px!important;
}
And this fixed the issue on the desktop device, but shifted the logo partially out of site on a mobile device.
Any ideas?
Kind Regards,
Tim
Hi,
Great, glad you got it working. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
Hi,
Great, glad it helped with some of your problems. As for the remaining, this thread might help you out? https://kriesi.at/support/topic/woocommerce-3-0-03-0-1-and-the-images-issue/
Best regards,
Rikard
Hi Sarah,
thanks for the quick help. The active links now have the correct color.
As for the alignment, I’ve added the following to the quick CSS:
@media only screen and (min-width: 1180px) {
#top #header .avia_mega_div {
left: 0px;
}
}
and it seems to work so far.
Thanks in advance,
microTOOL.
Hallo,
ich möchte hiermit erneut einen Beitrag eröffnen, es geht darum dass das PlugIn Relevanssi mit Enfold keine Stichwort-Ausgabe zulässt.
Ich möchte hiermit auf meinen vorangegangenen Beitrag Bezug nehmen https://kriesi.at/support/topic/schlagwortausgabe-tag-wird-nicht-angezeigt/.
Ich habe mit dem Pluin-Autor von Relevanssi kontakt aufgenommen und wir sind nach mehreren Testphasen (https://wordpress.org/support/topic/relevanssi-prevents-keyword-output/) zu dem Schluss gekommen das Enfold sehr wahrscheinlich einen Fehler in der Stichwort-Ausgabe hat. Ich habe eine Testseite erstellt in der nur Relevanssi als Plugin aktiviert ist. In den WordPress eigen Themes (Twenty Seventeen, Twenty Sixteen, Twenty Fifteen) sind keine Fehler, die Ausgabe ist korrekt Stichwort-Beiträge werden dargestellt. Wechsel ich das Theme und gehe zu Enfold, werden keine Beiträge bei Stichwort ausgegeben, es erscheint “Es konnte leider nichts gefunden werden”. Hier die Testseite http://www.as-consulting-nord.de/wp_as_02r7Zvg8p/testbeitrag-02/ es ist nur das Plugin Relevannssi aktiviert.
Hey Rikard, I dont really have an example at hand. Amazon uses this a lot for product presentation. Basically all elements, like from a portfolio are shown in one line. You then have to scroll from left to right or wipe. Its like any grid layout turns into an entry slider on mobile.
Hm, a walk arround might be to use a antry slider and set the rows to 3 for desktop and 1 for mobile. Still that might require some code right?
Hi,
I can’t see the css I have given showing in the css. Can you try to clear the cache from Autoptimize plugin? and check it again.
Best regards,
Nikko
Hi,
Great, glad you found the problem. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
Thanks! it’s working like a charm! I have another question though: the featured column appear with a black border on the top in the grey cell. How can I get rid of this? and what is the code to change the button text and background color?
http://i66.tinypic.com/21alkjm.png
Thanks a lot again :)
-
This reply was modified 8 years, 10 months ago by
Samuel.
Hi Andreas,
Here are the thread you might want to look into:
https://kriesi.at/support/topic/change-the-from-email-on-a-contact-form/#post-251496
https://kriesi.at/support/topic/how-to-change-email-sender-name/
I’m not sure about this part “a “reply to” function in the e-mail header which is filled with the e-mail adress of the user’s input”, why do you need the “reply to” to the user?
Best regards,
Victoria