Forum Replies Created
-
AuthorPosts
-
Hi roderickvs,
Please add code in the functions.php file.
add_action('wp_footer', 'ava_new_custom_script'); function ava_new_custom_script(){ ?> <script type="text/javascript"> (function($) { function a() { $('.pagination').insertBefore('.term-description'); } $(window).load(function() { a(); }); })(jQuery); </script> <?php }
Let us know if this was helpful or if you have any more questions.
Best regards,
VictoriaMarch 21, 2017 at 11:55 am in reply to: wrong language in contactform-mail (true instead yes) #764133Hey Joanna,
Can you give us a link to the page on your website where you have this issue. You can put it in the private content box below.
Best regards,
VictoriaHi architchandra,
It’s archive.php that you will need to work with in your child theme.
Best regards,
VictoriaHi kharsoul,
You can give these divs ids, and using these ids and media queries change the images for smaller screens.
You will also have to change the button colors, since the white ones will not be seen over white background.Let us know if you have any more questions.
Best regards,
VictoriaHi MadRhino,
I got confused now. What is it you need to achieve? And can you send a screen shot of what is not working?
Also here on the top image the title and the button are too far to the left, they go beyond view.
Best regards,
VictoriaHi BPC,
The best solution in this case is to prepare high quality, equal height images, then thumbs will be equal height also and will not be stretched and not lose quality even more.
The height is not equal because it is not equal in original images.
Best regards,
VictoriaHey Matthew,
The link you provided is not working.
1. It is better to make new php templates in child theme with modifications you need, other than moving element via javascript.
2. This can be done via css, but need to see on the page.
Please provide a valid link.
Best regards,
VictoriaHi grafixstudio,
Please refer to a solution here https://kriesi.at/support/topic/moving-sidebar-top-top-on-mobile-above-content/#post-737622
Let us know if this was helpful.
Best regards,
VictoriaHey getontop,
I would strongly suggest doing it by means of css.
If not, you can find file enfold/config-templatebuilder/avia-shortcodes/magazine.php, find
$titleTag = "h3";
and change it to h2. Keep in mind, you will loose this change on any theme update.Let us know if you have any more questions.
Best regards,
Victoria- This reply was modified 7 years, 8 months ago by Victoria.
Hey architchandra,
Here are a few useful links
http://www.wpbeginner.com/wp-tutorials/how-to-create-an-archives-page-in-wordpress/
https://codex.wordpress.org/Function_Reference/wp_get_archives
https://codex.wordpress.org/Function_Reference/get_year_linkLet us know if you have any more questions.
Best regards,
VictoriaHi Artem,
The problem is that the link attribute href has value and it’s a link, so the browser follows the link as it’s supposed to.
If you leave href empty, the problem disappears. You might want to check the javascript files, maybe there is still one loading from the deactivated plugin. Or if you you’re using some caching plugin, I would suggest you flush the cache.
Let us know if you have any more questions.
Best regards,
VictoriaHi digitalprint2222,
I did not mean devices here, I meant screen width, and that is more or less unified, You can just identify a few (up to 4) breakpoints and structure you styles around them.
Best regards,
VictoriaHi Martin,
Define a few more breakpoints and write font size and line height rules for them. Below is just an example:
@media only screen and (max-width: 1070px) { .element { font-size: 16px; line-height: 22px; } @media only screen and (max-width: 860px) { .element { font-size: 14px; line-height: 18px; }
But this is just the text part.
Best regards,
VictoriaHi MichaelAlbany,
I see, it’s a great use case, but unfortunately this is not something that can be done with a small snippet of code. You can hire a freelancer to make a custom slider for you or/and
request this feature here.Let us know if you have any more questions.
Best regards,
Victoria- This reply was modified 7 years, 8 months ago by Victoria.
Hi NetphoriaInc,
Me and Basilis are referring to a different slider. LayerSlider it has a lot more functionality and with it’s help you create layers of content.
Best regards,
VictoriaHi NetphoriaInc,
Great! :)
Best regards,
VictoriaHi Max,
Not sure if you can specify via shortcode that the first option has to have the disabled attribute. Some browsers used to be more strict about attributes and did not like the attributes without value stated explicitly like so disabled=disabled, but these days you can just use disabled.
Here what html is supposed to look like
http://imgur.com/a/XTBOhIf you can achieve it via functions.php – great! :)
Let us know if you have any more questions.
Best regards,
VictoriaHey sjohnson0424,
There are Javascript errors in admin panel. Here are the screens:
http://imgur.com/SC84obw
http://imgur.com/T1vkwNaThey might be preventing the changes to be saved, since they are made by ajax calls.
Best regards,
VictoriaHi draig,
This is what is in file
jQuery(document).ready(function($){ $(".disabled input").attr('disabled','true'); $(".readonly input").attr('readonly','true'); }); $(document).bind('gform_post_render', function(){ $(".readonly input").attr("readonly", true); $(".disabled input").attr("disabled", true); });
This give Javascript error, because it should be
jQuery(document).ready(function($){ $(".disabled input").attr('disabled','true'); $(".readonly input").attr('readonly','true'); }); jQuery(document).bind('gform_post_render', function(){ $(".readonly input").attr("readonly", true); $(".disabled input").attr("disabled", true); });
I still don’t see the arrows in Chrome on Mac and in Firefox I see the browser arrows not Formidable. Looks ok in Safari. Google fonts are blocked, because you’re requesting them over http, instead of https.
Let us know if you need any more help from our side.
Best regards,
VictoriaHey Tobias,
Here are the styles you can put in themes/enfold/css/custom.css or in QuickCss:
@media only screen and (min-width: 760px) and (max-width: 960px) { /* Add your Mobile Styles here */ .html_header_top .av_bottom_nav_header .main_menu ul:first-child > li a { height: 50px; line-height: 32px; padding-top: 10px; font-size: 16px; } } .cart_dropdown { display: none; }
This should resolve your issues.
Let us know if this was hrlpful
Best regards,
VictoriaMarch 19, 2017 at 8:49 pm in reply to: Events Calendar Sidebar Disappears on upgrade from Enfold 3.1.5 to Enfold 4.0 #763311Hi David,
Can you temporary admin access to your website in the private content box so that we can investigate further.
Best regards,
VictoriaHey dannablumenau,
You can add these styles to enfold/custom.css
body.page.page-id-4738 .pricing-table>li { line-height: 22px; min-height: 41px; }
Also you can play with text size and opacity there.
Let us know if this was helpful and if you have any more questions.
Best regards,
VictoriaHi Bkag,
These login credentials did not work for me. Please, revise them.
Best regards,
VictoriaMarch 19, 2017 at 5:30 pm in reply to: changing header image and write a text on it as my demo does #763256Hi Nadia,
Here the third icon is edit, it’s available on all element in Advanced Layout Builder.
Let us know if you have any more questions.
Best regards,
VictoriaHi architchandra,
It is because background images are kind of invisible to the browser if there is no other text or content in the container, that give some width and height to it. So the browser just ignores them. You could try to place those images as images in the container instead of putting them to the background.
If you need help with that, you can give us temporary admin access to your website in the private content box below.
Best regards,
VictoriaHi Mike61,
Well, that’s because that space is intended for price, which is a few digits and not for a line of text with a few words. Fixing that via css is tedious. I suggest you put that text into the div below, with class av-catalogue-content and style it to look like av-catalogue-price. Here is what it’s going to look like and no overlays.
Let us know if you have any more questions.
Best regards,
VictoriaMarch 19, 2017 at 4:44 pm in reply to: Quick CSS code does not output the same using Custom.css #763231Hey Ed,
I opened your page today and I see all the rules from custom.css on top and working. I would suggest this few modifications to them in custom.css.
.search-result-counter { width: 180px; height: 180px; margin: 0; padding: 0 } .search-result-counter img { border-radius: 0!important; min-width: 180px; }
Let us know if you have any more questions.
Best regards,
VictoriaMarch 19, 2017 at 4:32 pm in reply to: Confusing overlapping display of buttons in 1/5 content-elemements #763228Hi NieuweDag,
Try this one and let us know if this is something like you were aiming for.
@media only screen and (max-width: 1070px) { /* Add your Mobile Styles here */ body.page.page-id-981 #av_section_4 .avia-builder-el-first { margin-top: 0.5%; margin-right: -7%; } body.page.page-id-981 .avia-button.avia-size-large { padding: 10px 20px 10px; font-size: 13px; min-width: 140px; width: 160px; } } body.page.page-id-981 #av_section_4 .avia-builder-el-first { margin-right: -6%; margin-left: -1%; } body.page.page-id-981 div .av_one_fifth { margin-left: 7%; } body.page.page-id-981 #av_section_4.avia-button.avia-size-large { padding: 10px 16px 10px; font-size: 13px; min-width: 190px; }
Best regards,
VictoriaMarch 19, 2017 at 2:55 pm in reply to: Advance Styling overwrites the customer color in Content Elements #763206Hi enhanza,
Sometimes you have to, because you might have added other rules somewhere that would override the styles you see in preview. In this case, the snippet below is addressing a blockquote is canceling the white color we set for the parent of the blockquote.
#top .all_colors blockquote { color: #2a2a2a; }
Let us know if you have any more questions.
Best regards,
VictoriaHi georgecornelius,
Could not find a plugin or an easy way to do it.
Here is an article, you might want to look into. Or here are Bootstrap select options and tutorial on them.
If this looks a bit overwhelming, you can always hire a freelancer to do it for you.
Let us know if you have any more questions.
Best regards,
Victoria -
AuthorPosts