Hey jimbeamkentucky,
Kindly add this code in Quick CSS (located in Enfold > General Styling):
.responsive #top #wrap_all #header {
position: fixed;
top: 0;
}
Let us know if it works, if not then kindly give us a link to your site and post it in private content section :)
Best regards,
Nikko
Hi Kriesi!
Another quick question from us.. We have added an iconbox on one of our pages (see link in Private content), but the icon at the top is overlapping the text. I have tried adding padding using the CSS below, but that just moves the box down, not the icon in the circle. Hope you can help!
Thanks in advance!
.iconbox {
padding-top: 20px !important;
}
Thanks Nikko: see below for requested info.
To be sure I repeat the situation:
I created 2 sets of the SAME buttons:
one set in the Easy slider to be used on desktop and tablet.
one set below the easy slider in a separate button element to be used on smartphone.
thanks in advance
Hello,
My anchors are not working properly. I used a template for Consulting. On desktop, the anchors are fine, please see picture 1 and 2 below…when I click on “services” on the side bar, it goes to the correct section. But on mobile, the anchors do not work correctly. When I do the same and click on “services”, it goes down too low, please see pictures 3-5.
You can see that picture 2 is the correct position on desktop, while picture 5 is too low on mobile. Please help.
Hi,
I would like to have this menu and logo shrinking effect while staying on top on smartphone, like in this website http://www.noma.fr/ could you help me with this please ?
Kind regards
Christian
Hi Andy,
on the pictures you posted there is no banner at all. Seems like you’re using adblock. Above the blue bar on the top there should be a Bodylab24 banner. When you then scroll down the error becomes apparent. Couldn’t fix it yet.
Best regards
Arkadi
Hey Guys,
do you have any ideas how to visible the information in the socket on smart phones? on iPad and on a desktop PC / Laptop / macbook is everything visible.
especially on cell phones / mobil phones is it urgently to show imprint, Disclaimer and the privacy policy, because my Interests and customers use my site especially with their smart phone. Also the german internet law requires the visibility of imprint & Co.
please have a look into the link to google drive (Screenshots).
I don’t wanna have these footer menü not in the footer, but in the socket.
Thanks a lot in advance for your help.
regs
Vivian from vivilaloca.com
-
This topic was modified 9 years, 6 months ago by
Vivian.
Hi!
That is featured images for blog posts. Currently they are not set. If you would like to add featured images to your blog posts, please edit your posts and add featured images.
If you would like to remove the placeholder icon, please add following code to Quick CSS in Enfold theme options under General Styling tab
#top .fullsize .template-blog .blog-meta {
display: none;
}
Cheers!
Yigit
Solved :)
by copying the function to my child theme and adding an extra check to see if a post exists and if not putput dummy << >> links that dont click
I also had to add the taxonomy name in the single-portfolio.php and to tell it to keep in same category only
echo avia_post_nav(true,'case-studies');
if(!function_exists('avia_post_nav'))
{
function avia_post_nav($same_category = false, $taxonomy = 'category')
{
global $wp_version;
$settings = array();
$settings['same_category'] = $same_category;
$settings['excluded_terms'] = '';
$settings['wpversion'] = $wp_version;
//dont display if a fullscreen slider is available since they overlap
if((class_exists('avia_sc_layerslider') && !empty(avia_sc_layerslider::$slide_count)) ||
class_exists('avia_sc_slider_full') && !empty(avia_sc_slider_full::$slide_count) ) $settings['is_fullwidth'] = true;
$settings['type'] = get_post_type();
//if ($taxonomy) {
//$settings['taxonomy'] = $taxonomy;
//} else {
$settings['taxonomy'] = ($settings['type'] == 'portfolio') ? 'portfolio_entries' : $taxonomy;
//}
if(!is_singular() || is_post_type_hierarchical($settings['type'])) $settings['is_hierarchical'] = true;
if($settings['type'] === 'topic' || $settings['type'] === 'reply') $settings['is_bbpress'] = true;
$settings = apply_filters('avia_post_nav_settings', $settings);
if(!empty($settings['is_bbpress']) || !empty($settings['is_hierarchical']) || !empty($settings['is_fullwidth'])) return;
if(version_compare($settings['wpversion'], '3.8', '>=' ))
{
$entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
$entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
}
else
{
$entries['prev'] = get_previous_post($settings['same_category']);
$entries['next'] = get_next_post($settings['same_category']);
}
$entries = apply_filters('avia_post_nav_entries', $entries, $settings);
$output = "";
foreach ($entries as $key => $entry)
{
if(empty($entry)) { // continue;
//echo '<div class="disabled-post-nav">';
//echo '<a class="avia-post-nav avia-post-next with-image" ><span class="entry-info-wrap"><span class="entry-info"><span class="entry-image"></span></span></a>';
//echo '</div>';
$output .= "<div class='disabled-post-nav'><a class='avia-post-nav avia-post-{$key} {$class}' >";
//$output .= " <span class='label iconfont' ".av_icon_string($key)."></span>";
$output .= " <span class='entry-info-wrap'>";
$output .= " <span class='entry-info'><span class='entry-image'></span>";
// $tc1 = " <span class='entry-title'>{$the_title}</span>";
if($image) //$tc2 = " <span class='entry-image'>{$image}</span>";
//$output .= $key == 'prev' ? $tc1.$tc2 : $tc2.$tc1;
$output .= " </span>";
//$output .= " </span>";
$output .= "</a></div>";
} else {
$the_title = isset($entry->av_custom_title) ? $entry->av_custom_title : avia_backend_truncate(get_the_title($entry->ID),75," ");
$link = isset($entry->av_custom_link) ? $entry->av_custom_link : get_permalink($entry->ID);
$image = isset($entry->av_custom_image) ? $entry->av_custom_image : get_the_post_thumbnail($entry->ID, 'thumbnail');
$tc1 = $tc2 = "";
$class = $image ? "with-image" : "without-image";
$output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >";//.$same_category.$taxonomy;
$output .= " <span class='label iconfont' ".av_icon_string($key)."></span>";
$output .= " <span class='entry-info-wrap'>";
$output .= " <span class='entry-info'>";
$tc1 = " <span class='entry-title'>{$the_title}</span>";
if($image) $tc2 = " <span class='entry-image'>{$image}</span>";
$output .= $key == 'prev' ? $tc1.$tc2 : $tc2.$tc1;
$output .= " </span>";
$output .= " </span>";
$output .= "</a>";
} //end if JJA
}
return $output;
}
}
View post on imgur.com
Hi Ismael, please look at the image. The images don’t appear. But the styling , background , css colors are there , as well as the text. This was taken on firefox android. I also tried google chrome and still the same result.
For desktops it’s fine.
Hey Richard,
You just need to click on the post to Open it and if you are logged in as administrator you should see a black bar on top, just click on Edit Post. Let us know if this helps :)
Best regards,
Nikko
Hi all,
the screenshot here.
The goal:
The titles of images are displayed on mouse over in the grid, thats perfect!. I need to display them also under enlarged picture in the lightbox.
Something like here: http://www.arc.cz/web_cz/gal-architektura/2015_devinska_nova_ves_waldorfska_skola/index.html#img=20150330_175241.jpg
Plus:
It would be nice to display images in one column with titles under on mobile view.
It would be better to change on mouse over blending effect to something else, f.eg. the border.
Current situation:
Lightbox stoped working at all :-( It is opening nothing.
I have checked: Use Lighbox YES in the settings.
May be I have to install another lightbox?
-
This reply was modified 9 years, 6 months ago by
norbou.
Hi Oren!
Thanks a lot for contacting us.
We do support on weekends, but in lower scale.
Please consider not to create double posts, as it makes the support go slower and also your topics getting behind the que more.
We will do handle all the tickets, we do appreciate your patience.
Thanks a lot
Cheers!
Basilis
Hi,
Ok great, thanks for the feedback. Let us know if you should need any further help on the topic.
Best regards,
Rikard
I have started a thread a couple of days ago, and no reply yet.
Just wandering if this is a weekend service policy.
What would be a normal response time?
Thanks
Oren
Hi, on my page http://www.fitgutschein.de/fihh I have adjusted the soical share button size (header and socket) via #top .social_bookmarks li { font-size: 18px; }
Thas´s fine, but I did not find a code which allows me to
– increase the icon size on the 2 CTAs for “Teile auf Facebook / via Mail” (on last color area of this page w/backgound pic)
– Increase the colors incl. hover color for the text on hover there, too
Thx a lot in advance & best regards Tilman
Animated Countdown element (Countdown Clock) provided as Content Element with Enfold v. 3.8 can not be translated using
1. method from the site: https://kriesi.at/support/topic/animated-countdown-translation/ – the plug-in Codestyling Localization is no longer available
2. method provided including modification of config.php in config-events-calendar – the structure of file has been changed, the names are no longer provided in that file directly and so can not be modified
3. installing The Events Calendar plug-in, extracting .PO file for my localisation from lang folder of that plug-in in order to translate time units names won’t work for Polish – the _PL.po field is transalted from English, the English version that has been transalted does not provide time unit names at all, non of the records in the .po file link to the record that shall be translated localised in .php – in other words, there is nothing to translate there.
Please advise.
I would like to operate within Enfold native environment, without duplicating Enfold functions with third party plug-ins.
-
This topic was modified 9 years, 6 months ago by
michalosowski. Reason: Minor language mistakes
Contact Form provided in Content Elements of Enfold v. 3.8 sends e-mails with wrong subject.
It does not insert the subject provided in Contact Forms CMS, even though it is properly saved.
Using functions.php modification provided in https://kriesi.at/support/topic/email-subject-from-contact-form-subject/ does not work or I’m placing it inproperly (in the end of the document).
At the same time:
The confiramation content can not be fully modified.
There is “Your Message” header in the e-mail, that is followed by the data provided in the Contact Form by the registrant. I would like to translate and modify that header.
Hi Tommy,
I have added this code in functions.php (at the bottom):
function add_custom_script(){
?>
<script type="text/javascript">
(function($){
function newtab() {
$(".isotope .inner-entry > a.grid-image").attr('target', '_blank');
}
newtab();
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'add_custom_script');
This code allows the portfolio links to open in new tab, just remove it if you don’t want it to open in new tab or want to use the features “Display the big image in a lightbox” or “Open a preview of the entry”. Also I’d like to remind you since you have this customization in files to make a backup and use a child theme so you won’t have any problems losing the customizations during a theme update.
Best regards,
Nikko
-
This reply was modified 9 years, 6 months ago by
Nikko. Reason: formatting
Hey norcalnathan,
I tried checking on both links you have given and both are working when clicking on kindle pic, I have compared the page it opens in amazon and the url, both are the same. Can you tell us what device, browser, OS you are using? Can you also test it in desktop, user browser like chrome or firefox, if the issue also persists there?
Best regards,
Nikko
Hi,
Great, glad we could help :-)
Please let us know if you should need any further help on the topic.
Thanks,
Rikard
Hey!
Kindly replace the code I gave you with this code:
@media only screen and (max-width:1024px) {
#top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content {
padding: 10px;
}
#top .av-caption-style-overlay .av-masonry-entry .av-masonry-entry-title {
font-size: 14px !important;
}
}
Let us know if it works :)
Best regards,
Nikko
Thanks for the reply Rikard….I just re-read my post and it is badly written.
I need to create in the footer a link to a page similar to Terms and Conditions found in – Footer > Other Links at https://www.rishikulyogshala.org/
It is similar page to the rest on the web site but it isn’t a page that can be found in the top menu section.
I do not know how to create such a page, can you please help?
Hope this explains it better…
-
This reply was modified 9 years, 6 months ago by
taoleo. Reason: To correct spelling errors
Hi,
We added the following css code in the Quick CSS field.
@media only screen and (max-width: 1024px) {
.responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
width: 100% !important;
}
.responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
margin: 0;
margin-bottom: 20px;
}
}
Best regards,
Ismael
I would like to use contact 7 form with mail chimp.
I am aware of the existence of the mailchimp integration module but this is more suited for newsletter signups versus contact forms.
There is a similar thread from February 2015. I am wondering if this has been resolved ?
https://kriesi.at/support/topic/mailchimp-signup-in-enfold
Hi,
We added the following code in the functions.php file.
add_action('wp_footer', 'ava_custom_script');
function ava_custom_script(){
?>
<script type="text/javascript">
(function($) {
function c() {
var isMobile = '';
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) && 'ontouchstart' in document.documentElement)
{
isMobile = true;
}
else
{
isMobile = false;
}
if(isMobile) return;
var $main = $(".html_header_right #main"),
$window = $(window),
$sidebar = $(".html_header_right #top #header");
$window.resize(function() {
var mh = $main.outerHeight();
$sidebar.height(mh);
}).resize();
}
c();
})(jQuery);
</script>
<?php
}
Best regards,
Ismael
Hi,
Great! Glad you figured it out. If you don’t want to edit the file directly, use the available hooks from the template. Example:
// https://kriesi.at/support/topic/sub-navigation-menu-woocommerce-pages-conflict/#post-680362
Best regards,
Ismael
Hey m,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#after_section_1 {
border: none !important;
}
#top .main_color input[type='text'] {
border: none !important;
}
Best regards,
Jordan
Hey mleite1!
Please try the following to your custom css
.main_color.iconbox_top .iconbox_icon { display: none; }
Let us know if we can do anything else
Cheers!
Basilis
Hi Vinay,
I am not having issues with the menu/redirecting…
When I add an anchor for an internal link, such as, /#captcha, it will jump to the correct page, but the text is at the top of the browser (not the container) so the relevant text is UNDER the top header bar.
-
This reply was modified 9 years, 6 months ago by
lunatrix.