Hi Christian,
Please try to remove this CSS code:
.product .av-product-class-minimal {
height: 470px;
min-height: 470px!important;
}
and replace it with:
#top ul.products {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
#top ul.products .product {
clear: none;
display: flex;
flex-direction: column;
justify-content: flex-end;
float: none;
margin: 0;
width: 100%;
}
Hope it helps.
Best regards,
Nikko
How we can make mobile view header fixed while scroll down or scroll up the page, I have added below css code in quick css code, it work but removed the background color.
@media only screen and (max-width: 767px) {
#header_main {
position: fixed !important;
top: 0;
width: 100%;
z-index: 9999;
}
}
Hi,
Yes, that might be added in a future version of the theme.
Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi,
Please try this CSS as well:
div .product a {
text-decoration: none;
margin: 0;
position: absolute;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
Best regards,
Rikard
Hi,
Thanks for the feedback, I went to your /blog/ page and inspected as an iPhone and I see the text is justified, to change it to left try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top #wrap_all .fullsize .template-blog .post .entry-content-wrapper {
text-align: left;
}
After applying the css, please clear your browser cache and check.
Please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
Best regards,
Mike
Hallo,
ich ärgere mich, da ich das schon mal gefragt habe. Leider kann ich dazu nichts finden und auch die Suche hier auf der Seite hat mich nicht zum Ziel geführt. Ich will nur ganz einfach den Abstand oben und unten beim Submenü vergrößern auf der Seite: http://www.designplanung.de/projekt-007/
Das Submenü gefällt mir so nicht.
Ach und kann man vielleicht eine gestrichelte Linie zwischen den Menüpunkten im Submenü einbauen? Das würde denke ich gut aussehen.
viele Grüße,
Martin
———————————–
Hello,
I’m annoyed because I’ve asked this before. Unfortunately I can’t find anything about it and the search here on the site didn’t lead me to my destination. I just want to simply increase the distance at the top and bottom of the submenu on the page: http://www.designplanung.de/projekt-007/
I don’t like the submenu.
Oh and could you perhaps add a dashed line between the menu items in the submenu? I think that would look good.
Best regards,
Martin
Hi Ismael,
Thank you very much for your reply!
I have tried your code and this solved the problem, so thank you!
After I added your code, the “default” bullet points were still there. To remove these, I made some changes in my code.
The code now looks like this:
/* bullet points */
li::marker {
color: transparent;
font-size: 28px;
}
.entry-content-wrapper div li:before {
content: '';
width: 9px;
height: 9px;
display: block;
background: #ff9001;
border-radius: 100%;
float: left;
top: 8px;
position: relative;
margin-right: 14px;
margin-left: -24px;
}
Hi Mike,
I found a new issue with the site as I started to populate the menu further.
The last item on the menu “About Us”. I am using Mega Menu to populate most of the menu items. All but this last one work good and are LEFT aligned automatically. They all start at the same point (the very left edge of the site) without any prompting from me. They are all varying column numbers: The “Information” nav item uses 5 columns, “Support and Education” I have set to use 3 columns but 2 rows, and “Get Involved” uses 4 columns.
However when it comes to the “About Us” nav item it is not aligning in the same manner. It starts right at the right edge of the menu item and then disappears off the right edge of the screen. I seem to remember previously that the right side mega menu items tended to be right aligned to the site and then extend leftwards… It seems something has stopped this…
Could you assist please?
Thanks as always,
James.
Hi,
Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi,
If you are running a version prior to 4.4.1, then the update to 5.6.8 has to be done manually, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the new theme files via Appearance->Themes->Add New, and select to overwrite the old theme files after the upload has finished.
If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
Rikard
Hi,
When I checked your page the images in your “Themenbereiche” section have the opacity on desktop until I mouse-over them and for screen sizes below 1440px the images don’t have any opacity. This is what you wanted, correct?
Perhaps your iPad needs it’s cache cleared, try to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
Best regards,
Mike
Hi,
Thank you for the update.
The previous css code should have worked, but you can try this one instead.
@media only screen and (max-width: 768px) {
/* Add your Mobile Styles here */
.responsive #top #main .products .product {
margin: 0 0 20px 0;
width: 50%;
}
}
Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.
Best regards,
Ismael
On desktop I am using Poppins google font and looks great
but on mobile it is not picking up the poppins font
please see URL below
Hey Gianluca,
Thank you for the inquiry.
Did you add the following css code? It sets the opacity of the button container to 0.2, which makes the buttons transparent.
.avia_cart_buttons {
opacity: 0.2;
border-top-width: 1px;
border-top-style: solid;
padding: 10px;
overflow: hidden;
transition: all 0.3s ease-in-out;
}
Try to set the opacity back to 1.
Best regards,
Ismael
Hey pelgrimrat,
Thank you for the inquiry.
For some reason, the position of the marker is not adjustable. Please remove the previous modification, then add this css code instead.
.entry-content-wrapper div li:before {
content: '';
width: 8px;
height: 8px;
display: block;
background: #ff9001;
border-radius: 100%;
float: left;
top: 8px;
position: relative;
margin-right: 8px;
}
Best regards,
Ismael
sorry – I gave you the wrong admin
correct one below
I did have this css from a previous theme to make the 2 columns on the phone screen
I have now removed it from my new Enfold version of the site
@media (max-width: 768px) {
ul.products.columns-3{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
]
.ul.products.columns-3 li.product{
width: 32%;
}
I just want have the category pics on the home page top disply in 2 or 3 columns
can you send me the correct css for this
Hey finchkelsey,
Thank you for the link to your site, I believe that this code at the end of your child theme functions.php file in Appearance ▸ Editor will help:
function custom_tab_section_script() { ?>
<script>
window.onload = function() {
if (window.location.hash) {
var hash = window.location.hash.substring(1);
var targetElement = document.getElementById(hash);
if (targetElement) {
setTimeout(function() {
var offset = targetElement.offsetTop;
window.scrollTo({
top: offset,
behavior: "smooth"
});
}, 1000);
}
}
};
</script>
<?php
}
add_action('wp_footer', 'custom_tab_section_script', 99);
but I can’t fully test without admin access, please give this a try and clear your browser cache.
Best regards,
Mike
Hey andersjensen055,
Thank you for your question, please link to the page so we can examine. Thank you for the screenshots, from them I believe that you are referring the text below the TOC on mobile (screenshot 1), was the mobile screenshot a “before” screenshot? (2), because it looks correct or the same as the desktop version (3), otherwise please link link to a page as a before so we can assist with a solution.
Best regards,
Mike
Hi,
Great, I’m glad that you found a solution, and thanks for sharing. 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, I’m glad to hear that 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
I’m facing an issue with text alignment in blog posts. I find myself manually aligning every piece of text and title, avoiding the use of blocks because I can’t get the alignment right. I did use a simple Table of Contents block, which aligns well on a desktop but not on mobile. I’m looking for a way to set text alignment consistently across all devices and would really appreciate it if a moderator could guide me on how to fix this quickly.
on the page at
I need to adjust the tab width and the font size in the heading
I inspected the page and found this CSS which I have adjusted but its not applying
.av-inner-tab-title {
text-transform: none;
display: block;
line-height: 1.2em;
margin-top: 7px;
margin-bottom: 3px;
font-size: 18px;
text-align: center;
!important;
}
I also want to adjust the width of the tabs so that the title wording is able to be in one line
can you help out here too please?
Hey Createve_Solutions,
Great, I’m glad that you got things working. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
….need to have the margin on top as well :)
Niko, Your support is top notch man! This is like white glove concierge-level help, thanks so much!!
Very appreciated!
GB
Hi gb,
1. The date of the post is placed at the bottom of the post, Can it be placed at the top of the post?
I have added this code in WP Code to move the post date on the top:
function move_postmeta(){
?>
<script>
window.addEventListener('load', function() {
var postMetaInfos = document.querySelector('.single-post .post-meta-infos');
var featuredImage = document.querySelector('.big-preview');
if (postMetaInfos && featuredImage) {
featuredImage.parentNode.insertBefore(postMetaInfos, featuredImage);
}
});
</script>
<?php
}
add_action('wp_footer', 'move_postmeta');
Then to adjust the styling, I added this CSS code in Quick CSS:
#top.single-post #main .big-preview {
margin-top: 0;
}
#top.single-post #main .post-meta-infos {
float: none;
font-size: 1em;
margin-top: 0;
}
2. The post image highlights when the mouse hovers over and is clickable to enlarge. Which is unnecessary, can that be turned off?
Yes, I added this CSS code in Quick CSS:
#top.single-post #main .big-preview a {
pointer-events: none;
}
As for the error, it occured when I inserted the code to modify the image size, since it was already declared in functions-enfold.php, but it’s already fixed.
Best regards,
Nikko
Thank you for your help Mike! I sent a message to FiboSearch and was told the following.
– Make sure that Enfold Theme Options -> Main Menu -> Append Search Icon To Main Menu (is toggled off).
– FidoSearch bar is added through Appearance -> Menus. To the location it is to be in.
(Menu item options be sure to have Layout: Search bar selected.)
– WooCommerce -> FiboSearch -> Starting tab. Make sure that Search bars Replace them is not checked. As this is not meant to replace the Enfold search, but to replace it.
– WooCommerce -> FiboSearch -> Search bar. I clicked to use the Show submit button. I also used the style Solaris. Use layout Search bar.
FiboSearch support gave me the following CSS. I added some additional code.
/* Fra Fibiosearch support 9 nov 2023. */
/* Overriding default Enfold code. */
.menu-item .dgwt-wcas-search-wrapp {
opacity: 1 !important;
display: block !important;
}
.dgwt-wcas-search-input {
margin-bottom: 0 !important;
}
.menu-item .dgwt-wcas-search-form {
margin-bottom: 0 !important;
}
/* Search field. */
#menu-item-3327 {
height: 90px;
display: flex;
align-items: center;
}
/* Search field. 6 nov Joachim. */
#top .header_color .input-text, #top .header_color input[type='text'], #top .header_color input[type='input'], #top .header_color input[type='password'], #top .header_color input[type='email'], #top .header_color input[type='number'], #top .header_color input[type='url'], #top .header_color input[type='tel'], #top .header_color input[type='search'], #top .header_color textarea, #top .header_color select {
border: 1px solid lightgrey;
background: white;
}
/* Search button. 6 Nov Joachim. */
.dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit, .dgwt-wcas-om-bar .dgwt-wcas-om-return {
background-color: #f7f7f7;
color: #0f0f0f;
border-top: 1px solid lightgrey;
border-right: 1px solid lightgrey;
border-bottom: 1px solid lightgrey;
}
I added so much detail so that others whom might come across this thread might also want to try out FiboSearch.
The result is seen here: https://labhuset.no/
The site is slow to show results so that is something I will need to look into.
The site is a multisite so you have to go to the top -My Sites -Network Admin -Themes – Appearance
I am not sure what was done which, I am hoping you will quickly be able to identify if some code was removed, which at this point I believe may have occured.
Thank you
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi There,
I have discovered the Dynamic_Avia folder is full of thousands of files (4.8GB)… In fact it’s forced me to upgrade my hosting package which I didn’t want (or need) to do. Although I can see the issue I don’t know what to do about it. Can I stop Enfold from stuffing this folder? I’ve been reading the forum for hours and hours reading all the threads that relate to this… In fact I’ve followed the instructions in the link below and deleted all of the merged css- and js-files but it caused problems with my website so I had to restore everything. Is it okay to delete some of the contents of the Dynamic_Avia folder? (I have switched off File Merging And Compression in the performance tab of theme options)
I am happy to pay for support if required
Sincerely
Philip