Forum Replies Created
-
AuthorPosts
-
Hi!
I redacted the link in this thread as requested. We’re glad that the link works as you want it now! Thank you for sharing your final code.
Have a good day!
SarahMay 31, 2017 at 4:10 am in reply to: Cambiar las páginas con un diseño diferente en el movil #801763You’re welcome! We’re glad to help.
We’ll close this thread now. If you have any other questions or issues, feel free to post them here on the forum so we can take a look!
Also, we’d appreciate it if you can take a moment to review our theme if you haven’t already. https://themeforest.net/downloads Thank you!
Sarah
Please try this instead:
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger .emoji {display:none !important;}
Best regards,
SarahHi,
We’re glad that Nikko and Yigit were able to help you! Do you need any other help with this topic, or can we close this thread?
Sarah
Great! We’re glad that the problem is fixed now!
If you have other questions or issues, feel free to post them here on the forum.Thank you for using Enfold!
Sarah
Hello,
Can you try this in Quick CSS?
.av-subheading.av_custom_color {opacity:1.0 !important;}
Best regards,
SarahHey digitalprint2222,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
.weiterethemen .avia_textblock p { font-size: 20px; line-height: 2.0em }
Please adjust the values to fit your preference.
Best regards,
SarahHi Tomi,
It looks like the exclamation mark in the !important rule is in the wrong place. Can you try this instead, for the middle part of your code:
.logo, .logo a, .logo img { overflow: visible; max-height: 110px !important; }
Also, for your reference, when the header is scrolled, it takes the class
header-scrolled
. So if you want, you can use this in your CSS:.header-scrolled .logo, .header-scrolled .logo a, .header-scrolled .logo img { CODE HERE }
Best regards,
SarahHi,
If you’re in the page when the anchor is, it won’t reload.
Best regards,
SarahHey Serge,
I’m using Chrome and I think I can see both your masonry galleries. Can you show us a screenshot of what you’re seeing, both for Safari and Chrome? You can upload the image through imgur, Dropbox, Google Drive, or something similar, and then put the link here.
Best regards,
SarahYou’re welcome, Gregor! We’re happy to help. For any other questions or issues, feel free to post them here on the forum.
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
We’d also appreciate it if you can take a moment to review our theme if you haven’t already. https://themeforest.net/downloads
Thank you for using Enfold!
Sarah
Hey royaltask,
Can we have a link to the page in question so we can take a look?
Best regards,
SarahHi!
You should be able to have other pages in your menu.
For your anchor links, use the full URL instead, like:
mywebsite.com/#anchor
instead of just#anchor
so that they work on all pages.If you need further help, please send us a link to the website in question so we can take a look.
Best regards,
SarahYou’re welcome! For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you.
Thank you for using Enfold!
Sarah
Hi!
This is strange, your logo area seems a bit different than usual. Can you provide us login access so we can take a look?
You can also just use the code below to hide the image, and push up the main section. Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
.av-logo-container img {display:none !important;}
Best regards,
SarahHey Alex,
Can you try adding the !important rule to your first code?
p.product_price.price.headerfont { color: red !important; }
Best regards,
SarahHey edzetrading,
I noticed that you have two contact pages. Can you make sure you’re editing the right one? :)
Best regards,
SarahHi!
Sorry, but the picture that you sent doesn’t work for me. Can you check it please?
Best regards,
SarahHey nazortho,
In Enfold > Header > Mobile Menu, can you try setying the mobile menu to turn on for Smartphones and Tablets?
Best regards,
SarahHi,
Please try this code in Quick CSS:
/* set height for masonry content */ .av-inner-masonry-content-pos-content { height:46px; } /* masonry content colors */ figure.av-inner-masonry.main_color:hover .av-masonry-entry-title, .av-masonry-entry h3.av-masonry-entry-title.entry-title { color:gold!important; } .av-masonry-entry .av-masonry-entry-content { color:red!important; }
Best regards,
SarahHi,
It takes Google a while before they refresh their cache, so even if you do remove your pages properly, they might still show up on Google Search Results for a while. They’ll be gone eventually, though.
When we click on the links in Google search results, they do lead to your 404/”Nothing found” page. So that’s good.
Can you provide us admin access into your site so we can take a look, just to check?
Best regards,
SarahMay 30, 2017 at 6:20 am in reply to: Cambiar las páginas con un diseño diferente en el movil #801365Hi Mabel!
Here’s what you can do:
1.) Turn on CSS class fields for ALB elements: kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
2.) For the elements you want to only see in desktop (your Color Section), add the classdesktop-only
. For the elements you want to only see in mobile (your accordion), add the classmobile-only
.
3.) Use this code in Quick CSS:/* when in mobile, hide the desktop-only elements */ @media only screen and (max-width: 767px) { .desktop-only { display: none!important; } } /* when in desktop and tablets in landscape orientation, hide the mobile-only elements */ @media only screen and (min-width: 768px) { .mobile-only { display: none!important; } }
For your reference, here are the media queries for standard devices: https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
I hope that helps!
Best regards,
SarahHi,
Please add this in your Quick CSS:
#top #wrap_all .av-social-link-AVVO {width:120px;}
Don’t forget to flush your cache after saving, so you can see the changes! :)
Best regards,
SarahHi!
If you view the page’s code, the image that you don’t want to see has the class “emoji”. This is why John’s code is like that.
Please try this code instead:
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:before {display:none;}
This will remove the yellow square, but leave the magnifying glass. If you want to remove the magnifying glass as well, please use this instead:
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {display:none;}
Best regards,
SarahHi,
Like Nikko said, please give a class name to your Tabs Element, then You can use this code as basis.
.my-tabs .tab:nth-child(1) { background-color: blue !important; } .my-tabs #tab-id-1-container { background-color: blue !important; }
Please let us know if you need further help!
Best regards,
SarahHi,
You can add
font-weight: normal !important;
to the previous code I gave you. It then becomes this:.av-main-nav > li > a { font-size: 15px !important; font-weight: normal !important; }
You can also use this as reference for the value of font-weight: http://htmldog.com/references/css/properties/font-weight/
Best regards,
SarahHi!
I looked at your style.css, and it seems like the code for the social media icon hasn’t taken effect. This usually happens when you have a caching plugin, or your host has a caching service installed for you. Please make sure you flush your cache or talk to your host.
Best regards,
SarahHi,
Please use the following code in Quick CSS.
To change the background color of menu area:
#header_main_alternate { background-color: green; color:white ; }
To change the font size of menu
.av-main-nav > li > a { font-size: 15px !important; }
To make the menu center aligned, please go to Enfold > Header and under Menu and Logo Position, choose “logo center, menu below”. Then add following code to Quick CSS in Enfold theme options under General Styling tab:
.html_header_top.html_logo_center .logo { left: 0; }
Alternatively, you can keep your current header layout, and use this instead:
nav.main_menu { left: 25% !important; }
Best regards,
SarahHey jswigard,
It’s possible that you need to define a higher memory limit in WordPress and if possible increasing the memory on the hosting server. To increase the WordPress memory limit please access wp-config.php file and add the below line
define('WP_MEMORY_LIMIT', '256M');
For a detailed explanation please check this link and you can contact your service provider to increase the memory limit.
Best regards,
Sarah -
AuthorPosts