Applying CSS to a single page has now stopped working:
If i apply the code in the Private section to the quick css or style it does not work, If i take of the page number ID number off it does work
No cache plugins are turned on for testing, They are turned back on now though as they had no effect.
Stuck on this one as i don’t want to apply apply custom CSS to an element on every page.
Its not just the Full width button thats not taking the page id its any CSS i add with a page ID, without page Id it works fine.
UPDATE: I am using a custom post type, when tested on a normal page it works fine, any idea how to apply on a custom post type?
Not sure why it makes any difference? Its still got a page id?
Hey BC_Phil,
The background is a color section element, with the 3 boxes on top of it.
Thank you for using Enfold.
Best regards,
Mike
Hi,
If you use the following, it will work on hover
#top .gform_wrapper input[type=”submit”]::hover {
color: #fff;
border: 3px solid #fff;
background: transparent;
padding: 15px 30px 13px;
font-size: 13px;
min-width: 139px;
border-radius: 3px;
}
Best regards,
Basilis
Hi,
This css has to be added:
@media only screen and (max-width: 767px) {
#top-line {
vertical-align: top;
height: 30px;
}
#top-line > .container {
height: inherit;
max-width: 90%;
position: fixed;
top: 0 !important;
}
#search-icon-link {
height: 25px !important;
line-height: 25px !important;
width: 25px;
}
#top-line div a {
line-height: 16px;
}
}
And Javascript has to be slightly adjusted:
function av_move_search_mobile(){
?>
<script>
jQuery(window).load(function(){
jQuery("li#menu-item-search a").detach().css({"height": "auto", "line-height": "initial"}).attr('id', 'search-icon-link').appendTo('#top-line .container');
});
</script>
<?php
}
add_action('wp_footer', 'av_move_search_mobile');
Let me know how this works for you.
Best regards,
Victoria
Hi,
I will do leave the topic open for some days so he can reply for you, will close it after.
Let us know if we can help to anything else from our side.
Thank you
Best regards,
Basilis
Hi timahe,
Here, try this code:
@media only screen and (min-width: 1280px) {
#av_section_2 .av-parallax.enabled-parallax.active-parallax {
min-height: 770px;
}
#av_section_2 .container {
min-height: 500px;
}
#av_section_2 .container .entry-content-wrapper.clearfix {
padding-top: 40px;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Hi Abbe,
Ok, we can do it here. So what is the issue and we might still need the temp admin access to be able to look closer and have more context.
Also keep in mind this reply https://kriesi.at/support/topic/polylang-and-homepage-issues/#post-718671
Best regards,
Victoria
-
This reply was modified 8 years, 11 months ago by
Victoria.
Hi Joe,
It’s on top where all the elements are http://imgur.com/a/iw1TM
If you need further assistance please let us know.
Best regards,
Victoria
Hi 1raddad,
The code that overrides the hover is in Quick css somewhere. It looks like this:
#top ul:first-child > li > a:hover {
color: #88bbc8!important;
background: #ffffff;
}
You can find it and change it, or just remove !important.
Best regards,
Victoria
@Poirot
here is the solution, that worked:
Hey PascalStifani,
Please refer to this thread for a possible solution or this one here.
If you need further assistance please let us know.
Best regards,
Victoria
Exactly what I’m facing Guenni007. It will be interesting to see how this turns out. I understand that Enfold may get more sales by advertising LayerSlider as being included. However, from what I’m seeing//hearing, two things often happen. People skip the embedded LayerSlider altogether or they quickly jump to the PAID version in order to get security/functionality updates and access to premium templates.
In my opinion, Enfold should allow everyone (PAID and NON-PAID) to update as they wish. If we need to click a disclaimer box, I have absolutely no problem doing that.
For the PAID LayerSlider Users: We will want the latest updates at all times, except in very rare situations and we also have the LayerSlider support team to assist further.
For the NON-PAID (Embedded) LayerSlider Users: Issue a disclaimer to update at your own risk, saying the current supported embedded version is “x”.
ULTIMATE: Just unleash LayerSlider updates to ALL, as they are released by LayerSlider. I can’t imagine the issues would be anywhere close to the number of support topics opened weekly, re: LayerSlider.
Hi Michael,
Thank you for using Enfold!
1. Please use this in the Quick CSS section in Enfold > General Styling:
@media only screen and (max-width: 767px) {
.logo img { top:0px; }
}
2. The grid cells stack on top of each other. So if you would like to keep that sequence, you will have to rearrange the cells.
If you want, you can hide the middle grid for mobile, and create another version right after it, and make that one appear only for mobile.
If you do that, we can use something like this in quick CSS:
/* This will hide the original grid for mobile phones */
@media only screen and (max-width: 767px) {
#av-layout-grid-3 { display:none; }
}
/* This will hide the new mobile-only version for ipads and laptops */
@media only screen and (min-width: 768px) {
#av-layout-grid-4 { display:none; }
}
For #3 and #4, we’ll need to take a closer look at your page through your Dashboard. May we have access, please?
Best regards,
Sarah
Hi Rob,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) {
.slideshow_align_caption {
top: 25% !important;
}
}
Best regards,
Rikard
Hi Ron,
Great, glad we could help. 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 we could help and thanks for the feedback. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
Hi Robert,
Thanks for the feedback, hope the plugin works out for you. 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 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
Hi,
Great, glad you found a solution thank for letting us know. 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 is another thread with the same request. In your functions.php, can you try using this code instead:
add_action( 'ava_before_bottom_main_menu', 'enfold_customization_header_widget_area' );
function enfold_customization_header_widget_area() {
dynamic_sidebar( 'header' );
}
And then in Quick CSS, please try this:
#header .widget {
left: auto;
right: 90px;
padding-top: 0;
position: absolute;
top: 0;
transform: translate(-0%);
z-index: 999999;
}
Best regards,
Sarah
Hey Support Ninjas!
So, working on a new site, using y’alls Medical Demo as my base — and it looks great on desktop so far, video in the full width slider works and the fall back image shows up fine on mobile, but my Caption is getting cut off when viewing on the iPad or iPhone. (I did use some code I found from another post in quick CSS to lower the text just a tad, is that maybe the issue?)
How to fix?
Thanks!
Rob
How do I hide it on desktop?
Hi!
I added to my site a second menu, and now I’m having three problems:
1) The second menu doesn’t appears in mobiles,
2) I would like that second menu wouldn’t be sticky in the top (as primary menu),
3) The second menu is above primary menu’s drop-down subitems.
Thanks for all support!
You have been always great!
Thanks, Ismael, I deleted my snippet and replaced the complete postslider.php with your pastebin code, works fine, thanks!
Only one thing concerning this topic:
where in your Pastebin code can I add the word
Category:
in front of the particular category name?
Hey Neil,
If you wish the use the bundled version of LayerSlider, it will be updated on our next update.
Here’s the topic from the LayerSlider documentation:
Updating the bundled version in themes
If you’ve received LayerSlider as a bundled item in your theme, new releases will be provided by the theme author through theme updates, since Auto-Updates won’t work without activating your copy of LayerSlider. However, if you choose the purchase a license for LayerSlider, theme bundled versions can also be activated and updated without reinstalling the plugin.
Best regards,
Mike
Hi,
I use Enfold 4.0.5 and Worldpress 4.7.4
After last upgrade photo galleries stopped loading. Doesn’t matter if they are Next Gen (which I use) or Enfold galleries (which I tried).
I think this has been awnsered before, however I do not have the files mentioned here in my enfold theme folder:
https://kriesi.at/support/topic/how-to-disable-display-image-title-when-hovering-over-image/
Specifically, For this page Here:
If you hover over the image for a second, You can see the custom html caption text. The client would like to hide that and I tried for a few hours to find the right CSS or a solution on these forums but no luck.
Thanks,
Ryan
-
This topic was modified 8 years, 11 months ago by
Rionoskae.
Hey kelsangwangpo,
You can add a widget in the header: https://kriesi.at/support/topic/adding-a-widget-area-inside-the-inner-container-of-the-header-after-the-logo/#post-535353
But in the menu is not possible without major modification on the theme.
You could try this plugin: https://wordpress.org/plugins/widgets-in-menu/
and use the Enfold Latest News widget.
Best regards,
Mike
Hey josollazzo,
Here’s how I did it, change the button row to a default row and paste your html buttons, I copied these from the page source code:
<a href="#" class="avia-button avia-icon_select-yes-left-icon avia-color-theme-color avia-size-small bpl "><span class="avia_button_icon avia_button_icon_left " aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span><span class="avia_iconbox_title">Choice 1</span></a>
<a href="#" class="avia-button avia-icon_select-yes-left-icon avia-color-theme-color avia-size-small bpr "><span class="avia_button_icon avia_button_icon_left " aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span><span class="avia_iconbox_title">Choice 2</span></a>
Then I added this code in the General Styling > Quick CSS field:
.bpl {
float: left
}
.bpr {
float: right;
top: -25px;
}

Best regards,
Mike