Hi,
1- You have following code in Enfold theme options > General Styling > Quick CSS
.single-post #main {
padding-top: 60px!important;
}
that is causing the issue. Please remove it.
2- Please refer to Ismael’s post here – https://kriesi.at/support/topic/using-alb-with-custom-post-type-and-meta-information/#post-580144
Best regards,
Yigit
Hey Érik,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
@media only screen and (max-width: 480px) {
.responsive #top .logo {
padding-bottom: 20px;
}}
Best regards,
Yigit
Dear Enfold Support,
thank you for your amazing support and beautiful theme.
First question:
I want to know if it is possible to have a fixed socket size at the bottom, because if I have very smallcontent on one page, the black socket will extend all the way to the top and the page is lookin kinda sad with all that black :D
Second question:
Can I have the socket permanenly on the bottom, regardless of the size of the content, just like the main menu banner.
-
This topic was modified 9 years, 5 months ago by
tibe87.
Hey tremblayly,
Can you please post the link to your page where you are using a boxed layout so we can see the issue?
Please refer to this thread – https://kriesi.at/support/topic/word-wrap-in-menu-or-have-the-menu-on-two-lines/#post-283385
Best regards,
Yigit
Hey Kurt,
1- It does show today correctly on my end. Please go to Settings > General and make sure that you chose your timezone correctly.
2- Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#top .av-menu-button-colored > a .avia-menu-text { border: none; }
Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.
Best regards,
Yigit
And here is a huge collection of sites using ENFOLD, I recently discovered here in the forum https://kriesi.at/support/topic/enfold-showcase/#post-628744, obviously @felipepavao has created it:
Hello
Yesterday all the vidoes on my site that I have embedded from Vimeo were working fine, today across two sites that I have running Enfold none work (I am looking at them in Firefox), so the issues can’t be site specific. Please see an example page with a video on below.
The video appears to be there but when you hit play timer stays on 00:00 as if paused. But it’s not.
Please advise
hi ismael
the above peace of code, ive changed the
var iconbox = $(‘.iconbox’),
into
var iconbox = $(‘jelle.iconbox’)
in the quick css ive put:
#top .jelle.iconbox {
cursor: pointer;
}
now i can see a custom class field below the text field in the icon box, see image ccf.jpg
i fill in : jelle
and yes, the pointer is now for the whole box. but…still ONLY the title is linking to the destination page.
there is a ‘hand’ – pointer over the rest of the text, but once clicked its not linking
see: http://jeelsites.nl/veiling/ (were talking about the left box called: Test.
what is going wrong?
NB: the code looks like this now:
<script type=”text/javascript”>
(function($) {
function a() {
var iconbox = $(‘jelle.iconbox’),
boxlink = ”;
iconbox.on(‘click’, function() {
boxlink = $(this).find(‘jelle.iconbox_content_title a’).attr(‘href’);
window.location.href = boxlink;
});
}
a();
})(jQuery);
</script>
-
This reply was modified 9 years, 5 months ago by
yampieters.
where do i need to place that? on the top or at the bottom? because at the bottom it doenst work.
Hello Yigit,
I found out how to change the font code, I used this code:
#top .av-subnav-menu li a > .avia-menu-text {
color: #FF6000; font:strong;
}
But I have still question about the translation of the”Menu”.
Hi,
We have added the below code at the very end of your themes / child themes functions.php file:
// Scroll to div
function scrollToDiv(){
?>
<script>
jQuery(document).scroll(function() {
var sections = jQuery('.avia-section'),
menu = jQuery('#mobile-advanced a[href^="#"]');
menu.on('click', function(event) {
var target = jQuery(this.getAttribute('href'));
if( target.length ) {
event.preventDefault();
jQuery('html, body').stop().animate({
scrollTop: target.offset().top - 1000
}, 1000);
}
});
});
</script>
<?php
}
add_action('wp_head', 'scrollToDiv');
Best regards,
Vinay
-
This reply was modified 9 years, 5 months ago by
Vinay.
Hi Andy just found the solution. For information to any other user, here the php code to create an ad hoc shortcodes that adds an <abbr> tag to show full text on mouse hover on acronyms
<?php
/*it creates an <abbr> tag*/
if ( !class_exists( 'av_abbr' ) )
{
class av_abbr extends aviaShortcodeTemplate
{
/**
* Create the config array for the shortcode button
*/
function shortcode_insert_button()
{
$this->config['name'] = __('Acronym Extension');
$this->config['order'] = 100;
$this->config['shortcode'] = 'av_abbr';
$this->config['tooltip'] = __('Creates a full text which appears on mouse over acronyms terms');
$this->config['inline'] = true;
$this->config['tinyMCE'] = array('tiny_always'=>true);
}
/**
* Popup Elements
*
* If this function is defined in a child class the element automatically gets an edit button, that, when pressed
* opens a modal window that allows to edit the element properties
*
* @return void
*/
function popup_elements()
{
$this->elements = array(
array(
"type" => "tab_container", 'nodescription' => true
),
array(
"type" => "tab",
"name" => __("Content" , 'avia_framework'),
'nodescription' => true
),
array( "name" => __("Acronym", 'avia_framework' ),
"desc" => __("This is the acronym.", 'avia_framework' ),
"id" => "acronym",
"type" => "input",
"std" => __("ACR", 'avia_framework' )),
array( "name" => __("Full title", 'avia_framework' ),
"desc" => __("This is the text that appears on your acronym.", 'avia_framework' ),
"id" => "title",
"type" => "input",
"std" => __("Full text", 'avia_framework' )),
array(
"type" => "close_div",
'nodescription' => true
),
);
}
/**
* Frontend Shortcode Handler
*
* @param array $atts array of attributes
* @param string $content text within enclosing form of shortcode element
* @param string $shortcodename the shortcode found, when == callback name
* @return string $output returns the modified html string
*/
function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
{
$output = "";
$atts = shortcode_atts(
array( 'title'=>'',
'acronym' =>'',
), $atts, $this->config['shortcode']);
$output = '';
$output= "<abbr title='".$atts['title']. "'> " . $atts['acronym'] . "</abbr>";
return $output;
}
}
}
You can close the topic. Thanks
Elena
On my search for the right setting to have a enfold singel author full width blog, i found a conversation in
the forum which should have solved the problem.
But the picture shown in https://kriesi.at/support/topic/single-author-full-width-blog-style/
doesnt match how the Enfold Options look in my layout. (would have liked to attach a screenshot but it wasnt possible)
So i wasnt able to solve the problem.
Can anybody tell me how to proceed so i can have a blog, looking like shown in your “Singel Auther Full With” example?
Thank you.
Filipp
Hello Enfold,
I’m getting warnings from the layerslider:
Multiple jQuery issue.
It advices to “put JS includes to body”. At the page the layerslider warns to only do this with enough experience because it can break the site.
So how big are the risks?
Also the layer slider does not completly hide on mobile. The place of the layerslider is now blank instead of gone.
thanks
-EDIT-
Also the layer slider on desktop doesn’t load all the time. It stays white a lot of the time
-
This topic was modified 9 years, 5 months ago by
Wolf.
Hi jagrav-enfold!
Thank you for using Enfold.
Please add this in the Quick CSS field:
#top #nav_menu-4 div ul {
height: 80px;
}
#top #nav_menu-4 div ul li {
clear: none;
display: inline-block;
}
Best regards,
Ismael
Hello,
Take a closer look please:
The video will auto load if the video is visible on the load. So for example, it loads header video if you first load page. And, if you go to middle of page and hit reload, it will load that video. But if you scroll up, you will see the top video never started.
Thanks,
Jason
Hi artiteq!
Thank you for using Enfold.
Are you using the default settings of the plugin? Please post the website url plus the login credentials so that we can check the issue. Or try these plugins.
// https://wordpress.org/plugins/wp-super-cache/
// https://wp-rocket.me/
Or choose from this list of cache plugin.
// https://www.designbombs.com/top-wordpress-caching-plugins-compared/
Cheers!
Ismael
OK I figured out that the diagonal border is only for the “footer” of the section and therefore does not overlap the top of the next section. So if you use and image as a background for the next section you need to use a PNG and have it fade to transparent at the top of the section to create the illusion of the diagonal line being a part of that section. This is what you guys did in the second section of the Creative Studio demo.
If you could add to the wish list to make the diagonal both top AND bottom of a single section, that would solve the problem for me and allow me to blend the sections together more easily.
So rather than using the diagonals, for continuity I will have to use horizontal transitions.
Go ahead and close this ticket.
Thank you!
Hi brianbu!
Please take a look here
https://kriesi.at/support/topic/header-background-color-and-logo/
and let us know if that works out for you.
Best regards,
Basilis
I’m not going to add another ticket this ticket is under the correct question and this topic is still relevant under it.
One of the pages on my site is overlapping on the tablet view (but looks great on desktop and mobile). I have it divided into fifths with no space between columns and 30px padding all around. Can you please show me how to make it not overlap on the tablet view.
Tablet view
View post on imgur.com
Desktop view
View post on imgur.com
Thanks.
Hi,
Is it possible to add some space under the logo? Right now it seems like the logo sits on top of the animation below. I would like to add like 20px of distance between both but only on phones.
Thanks!
Érik
Hi,
1- Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even), #top .main_color .avia-data-table.avia_pricing_minimal td {
color: #666666;
background: white;
}
Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.
2- Once you add a currency, it will be displayed in smaller size which, as i can see, you have already figured out :)
Best regards,
Yigit
-
This reply was modified 9 years, 5 months ago by
Yigit.
Hey mcraig77,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
h3.av-rotator-container-inner img {
top: 15px;
position: relative;
}
Best regards,
Yigit
Hi,
I’m using wcvendors plugin with Enfold.
The page – ‘http://www.bemvestir.moda/painel_do_vendedor/order/’ displays one vendor’s orders.
There’s a issue related to the header when is not shrinked. When I try to see the details on an order – http://www.bemvestir.moda/painel_do_vendedor/order/ (you must login as a vendor user to access this content), the new open box is hidden at its top. This makes it impossible to close the box in the upper right corner.
Please see the image url below.
Kind Regards
Hallo zusammen
Habe das hier gefunden. I found that
https://kriesi.at/support/topic/search-icon-on-mobile-devices/#post-589759
Aber ich verstehe nicht gut Englisch. Im not good in English
Und habe WordPress auf Deutsch and have wordpress in german
Ich habe es versucht, zu verstehen aber hat nicht geklappt. I tried but did not success
Könnt Ihr die Angaben bitte auch auf Deusch machen? Do you have it all ni German explained or can you translate? Vielen Dank!
H Mario!
I’m fine thanks, how are you? :)
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.html_header_sidebar #top #header .social_bookmarks li {
display: inline-block;
}
Best regards,
Yigit