Hey Enfold Team
On this website I have implemented some english and german flags in the header from where you link to a very brief summary of the original website in danish. I have used this css (which works fine), you earlier provided me to place theese flags in the header of only the frontpage:
#header .widget {
right: 40px;
top: 22px;
position: absolute;
z-index: 999;
}
#header .widget {
display:none;
}
.home #header .widget {
display:block;
}
HOWEVER: The flags now disables the links in the menu above, so that the menu-link right above the flags do not work!?
I have removed the german flag again only leaving the english flag (link) so that the menu is still accessible, but I need the german flag beside the english as well.
I hope you can provide me with some kind of “to do”/code to make more flags linkable beside the english – without disabling the menu link above.
Pls. find login data in private content (and you may deactivate plugins if needed)
Very best regards
Hi,
I am using the sliding feature for pictures on my website. It works good on my computer / laptop, but on my Iphone or Ipad the pictures are fixed. That’s okay with me, but the picture shows now the legs instead of the upperpart of the model. How can i reframe the picture, so it shows that part of the picture that i want it to show?
Thanks!
hi,
between the switch from #top to small navigation, there is something like a flash, which i can’t explaint.
….actually the only change is that the mobile image is now at the top and the desktop one is below. So it just flipped these
Hi Ismael,
Just created desktop and mobile sections on both pages. All looks like I want so far except for when I flip the ipad horizontally. It does use the mobile version. What should I change in my CSS code that would force the landscape mode on my ipad to display like in portrait mode. I reduced my screen size from 1024px to 989px but it did not fix the issue.
Here’s my code:
/* alternate Releve entreprise grid for mobile devices */
@media screen and (max-width: 989px) {
#releve-entreprise-desktop { display: none !important; }
#releve-entreprise-mobile { display: block !important; }
}
@media screen and (min-width: 989px) {
#releve-entreprise-desktop { display: block !important; }
#releve-entreprise-mobile { display: none !important; }
}
/* alternate Releve leaders grid for mobile devices */
@media screen and (max-width: 989px) {
#releve-leaders-desktop { display: none !important; }
#releve-leaders-mobile { display: block !important; }
}
@media screen and (min-width: 989px) {
#releve-leaders-desktop { display: block !important; }
#releve-leaders-mobile { display: none !important; }
}
/* COACHING PAGE */
/* alternate Coaching travail grid for mobile devices */
@media screen and (max-width: 989px) {
#coaching-travail-desktop { display: none !important; }
#coaching-travail-mobile { display: block !important; }
}
@media screen and (min-width: 989px) {
#coaching-travail-desktop { display: block !important; }
#coaching-travail-mobile { display: none !important; }
}
/* alternate Coaching partenariat grid for mobile devices */
@media screen and (max-width: 989px) {
#coaching-partenariat-desktop { display: none !important; }
#coaching-partenariat-mobile { display: block !important; }
}
@media screen and (min-width: 989px) {
#coaching-partenariat-desktop { display: block !important; }
#coaching-partenariat-mobile { display: none !important; }
}
Thanks
Lyse
Hi,
Your code should be as following
.rtl body { font-family: "IRANSans" !important; }
.rtl fieldset label { font-family: "IRANSans" !important;}
.rtl input[type="submit"], h1, h4, h5, h3, h2 { font-family: "IRANSans" !important;}
.rtl input[type='text'],
.rtl input[type='email'],
.rtl textarea{ font-family: 'IRANSans' !important;}
.rtl #top .avia-font-entypo-fontello, .rtl body .avia-font-entypo-fontello, html.rtl body [data-av_iconfont='entypo-fontello']:before { font-family: 'entypo-fontello'!important;}
@media only screen and (max-width: 767px){
.rtl #header_meta .sub_menu {
min-width: 560px;
background: rgba(0, 0, 0, 0);
padding-left: 0;
padding-top: 0px;
right: 30%;
position: relative !important;
top: 15px;
}
}
Best regards,
Yigit
-
This reply was modified 8 years, 11 months ago by
Yigit.
https://kriesi.at/support/topic/website-two-column-blog-not-displaying-properly-in-mobile/
I already made a thread for this. However, it’s not actually displaying properly. The blog posts are irregularly spaced vertically. Every other post is now too high or too low. I would like all blog posts to be the same spacing on mobile, if possible. Between the dates and the pictures, the spacing is different from one post to the next.
Thanks,
Brendon
Thanks a lot dear Yigit for the detail.
Yes, we have an English version and Farsi (RTL language) version.
For instance, right now we have these codes under our general tab:
body { font-family: "IRANSans" !important; }
fieldset label { font-family: "IRANSans" !important;}
input[type="submit"], h1, h4, h5, h3, h2 { font-family: "IRANSans" !important;}
input[type='text'],
input[type='email'],
textarea{ font-family: 'IRANSans' !important;}
#top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont='entypo-fontello']:before { font-family: 'entypo-fontello'!important;}
@media only screen and (max-width: 767px){
#header_meta .sub_menu {
min-width: 560px;
background: rgba(0, 0, 0, 0);
padding-left: 0;
padding-top: 0px;
right: 30%;
position: relative !important;
top: 15px;
}
}
So, should I add them into the style.css with the below changes:
.rtl body { font-family: "IRANSans" !important; }
.rtl fieldset label { font-family: "IRANSans" !important;}
.rtl input[type="submit"], h1, h4, h5, h3, h2 { font-family: "IRANSans" !important;}
.rtl input[type='text'],
.rtl input[type='email'],
.rtl textarea{ font-family: 'IRANSans' !important;}
.rtl #top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont='entypo-fontello']:before { font-family: 'entypo-fontello'!important;}
.rtl @media only screen and (max-width: 767px){
#header_meta .sub_menu {
min-width: 560px;
background: rgba(0, 0, 0, 0);
padding-left: 0;
padding-top: 0px;
right: 30%;
position: relative !important;
top: 15px;
}
}
-
This reply was modified 8 years, 11 months ago by
Sadegh.
I have digged deep in this forum and found a snippet from 2014, that is still working for this issue (no categories in ALB element “blogposts” in grid-layout):
modify this file:
config-templatebuilder -> avia-shortcodes -> postslider.php
around line 445 (after the comments output)
add this:
//fix to show categories
$category = get_the_category();
if(!empty($category))
{
$output.= '<span class="blog-categories minor-meta">'.__('Category: ','avia_framework')." ";
$output.= $cats;
$output.= '</span><span class="text-sep text-sep-cat"> </span>';
}
with the ALB element “blogposts” and its “blog-grid” layout I get this on my testpage:

Works fine until a theme update.
Ich habe jetzt tief im Forum gegraben und ein Snippet aus 2014 gefunden, das tatsächlich noch funktioniert:
in der Datei
config-templatebuilder -> avia-shortcodes -> postslider.php
ca. bei Zeile 445 (nach dem Output der Kommentare)
hab ich das eingefügt:
//Fix zum Anzeigen von Kategorien
$category = get_the_category();
if(!empty($category))
{
$output.= '<span class="blog-categories minor-meta">'.__('Kategorie: ','avia_framework')." ";
$output.= $cats;
$output.= '</span><span class="text-sep text-sep-cat"> </span>';
}
Mit dem ALB-Element “Blogbeiträge” sieht das dann so aus:

Funktioniert prima!
Hi,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
@media only screen and (max-width:767px) {
.page-id-804 #av_section_2 .avia-builder-el-12 {
padding-top: 20px;
}
}
Just adjust the top padding value as you see fit. Let us know if this helps :)
Best regards,
Nikko
hi victoria,
there is another thing on that mulitsite-website.
have a look on that domain (attached)
When you are on top position, the logo is not shown. If you scroll down, the small logo appears. if you scroll up again, you can see that the logo gets bigger, but then it is gone.
If you look on Chrome, you don’t see the logo, but only a link.
What could force that?
-> Of course i want the logo to be seen on the top
Hello Sarah, actually I’m looking at a single product page (see link in private content).
What I’d like to change is the font size/style of the product name, at the top of the page.
okay guys i 90% figured this one out, take a look at my myproblem page now
Using https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_aspect_ratio_169 as my inspiration what I did was set the background image to contain.
I then set padding-top to be 52%. I did this because 1010 x 100 divded 1920 gives us 52%. So we know the height is to be 52% of the width.
I’ve almost got it all figured out but then realised dropping an element say text in the colur selection now pushes it down due to padding. So if you look at the w3schools example it applies some css to the text element telling it to move back up. Using position absolute and top 0.
How ever when I attempt to apply that to my text box in enfold it fails to have an impact. Any final pointers on how to achieve this so elements position properly within the color selection?
-
This reply was modified 8 years, 11 months ago by
codecreative.
Hello,
Please take a look at this post:
https://kriesi.at/support/topic/layerslider-picture-goes-over-100-width/
This problem is now solvable to go to the layerslider with the problem, go to appearance and at the background-size use ‘contain’ as an option.
But I also have a Multisite with about 80 sites with 5-10 layersliders per site.
Can I use a CSS or Javascript ‘hook’ to alter al those settings in one batch?
Greets Jeen
Hi,
I added the code to top of Quick CSS field without any spaces as following
.ajax_search_excerpt {display: none !important;}
and flushed cache and that worked – http://i.imgur.com/Lr21giT.jpg
Please review your website
Best regards,
Yigit
Hi, I need to “separate” each element by 15px in the portfolio grid when I select the 1 column layout special view (not the deafault layout).
How I can accomplish this? I saw in the code inspection panel (chrome) that the elements main cointainer had a well-defined size in px, I suppose that this fact it’s based on number of elements. If I try to add margin-top in custom css section for any of the class declared in a element div nothing happened.
Thank you very much.
P.s.: In the Private Content I wrote you the link of the page where I have the grid portfolio gallery.
Best regard,
Dionisio
Hi Samuel,
May we direct you to a previous thread that discusses the same thing? Please see the discussion here https://kriesi.at/support/topic/pricing-table-color/ and adjust the values to fit your preference.
If you need further help for customizing the colors of your pricing table, let us know.
Best regards,
Sarah
According to the plugin’s support forums, it should already be included in the release. You can also try the solution presented here: https://wordpress.org/support/topic/mont-name-translation-date_i18n/
Since you’re working with the plugin now, perhaps the folks in the plugin’s forum will be more helpful to you. :)
Best regards,
Sarah
Hi Sigmund,
Please use this code instead of the one I previously gave you:
.bbpress #main, .bbpress .title_container {
background-image: url("https://cic-mindline.de/wp-content/uploads/2017/03/Holz2_XL.jpg");
}
.bbpress .title_container {
border:none;
}
That one will now apply to ALL pages that have to do with bbpress, not just single forum or single topic pages. The white bar above topic pages should also be gone.
Best regards,
Sarah
-
This reply was modified 8 years, 11 months ago by
Sarah.
Hi Sarah,
that works like charm, thank you!
Can you help me with the task to disply this background image on every single bbpress topic also? That would be great.
I have tried
.
single-topic .container_wrap_first {
background-image: url("image.jpg");
}
but that leaves a small white bar under the header.
Best Regards
-
This reply was modified 8 years, 11 months ago by
Sigmund.
Hi Antonio,
Ah sorry, I missed that specification! :) Please ignore my first answer, then.
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: 480px) {
#top #wrap_all .avia-gallery-1 .avia-gallery-thumb a {
width: 25% !important;
}
}
If you wanted this for iPads, too, you can replace max-width: 480px with max-width: 767px.
Best regards,
Sarah
Hey Antonio,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
#header .header_bg {
top: 0 !important;
}
Hope this helps :)
Best regards,
Nikko
Hi Sarah,
Thanks but this setting will also change the desktop look. I would like to keep the 6 column display on desktop but have it as 4 on just mobile devices if possible.
Regards
Antonio
Hi guys,
I just added a lead capture bar on top of the page at http://www.vacationrentalworldsummit.com/.
As you scroll down the menu appears but the white bacgkround goes right under it.
Would you have a QuickCSS fix for this?
Thanks
Hey Francisco,
Can you try the solution of one of our users @mensmaximus?
Basic Solution
Enhanced Solution
His solution has helped others with a problem similar to yours.
Best regards,
Sarah
Hi.
How can turn the upper column into black here?
” Dato, Sted, Beskrivelse, Tid”
I want it to look like it does now, the same design, but with the black line on the top like this(I uploadet a picture):
https://ibb.co/fCgwO5
Hey emilgandersson,
Can you give us more details about what you would like to do? What kind of change would you like?
Maybe the solutions in this thread will be helpful to you: https://kriesi.at/support/topic/changing-mobile-menu-icons-using-entypo-fontello/
Or perhaps this one: https://kriesi.at/support/topic/possible-to-change-the-mobile-menu-icon/
If not, please let us know how we can help.
Best regards,
Sarah
Hi,
Please try this instead:
@media only screen and (min-width: 1024px) {
#releve-slider-desktop {
display:block !important;
}
#releve-slider-mobile {
display:none !important;
}
}
@media only screen and (max-width: 1023px) {
#releve-slider-desktop {
display:none !important;
}
#releve-slider-mobile {
display:block !important;
}
}
Best regards,
Rikard