Hey!
You can try following code instead
#top #header .av-main-nav > li > a {
font-weight: 100;
}
Best regards,
Yigit
Hi chaps,
This may be out of your scope of support but I thought it would be worth mentioning in case I was wrong.
My wp development site (“http://james.artyzans.co.uk/wp”) is up and running under the domain “http://www.staysaasfee.com”. When clicking the ‘accommodation’ and ‘terms and conditions’ menu links from the published website, the browser loads james.artyzans.co.uk/wp. I have a feeling this might be because my “site URL” in the settings within the back-end is still set to james.artyzans.co.uk/wp rather than staysaasfee.com.
I also have a problematic menu link called ‘saas-fee’ which is a custom link directed to the published site and I receive an internal error when its clicked. I receive the same error if I click the 2 hyperlinks near the top of the home page. I’m sure you will receive the same errors if you have a quick play on the published site.
All these links worked fine before migrating the site to the host.
I’ve called my hosting service who say its a development issue. Would you have any suggestions?
All the best,
James
-
This topic was modified 9 years ago by
Jambo.
Hi Andy,
Sorry for the misunderstanding.
I want the header to be on top of (inside) the picture, not above the picture.
Just like: http://www.binnenvaartkrant.nl/nieuws/nieuwsitem/a2b-online-blijft-groeien/
Regards,
Steven.
Hallo!
Please edit your page and place your content below Layer Slider into a Color Section element and upload following image as your background image and choose to display top centered
Best regards,
Yigit
Hi,
as far as I can see it the header is already on top of the picture: http://i.imgur.com/LSwX9bF.png
There is no way to set is automatically, but you could set it for every single item, for example with this code:
#av-masonry-2-item-23062 .av-masonry-entry-title.entry-title {
margin-top: -10px;
}
To remove date:
span.av-masonry-date.meta-color.updated {
display: none;
}
Best regards,
Andy
Hey satucker,
I replied you here – https://kriesi.at/support/topic/hidden-text-on-mobile/#post-741932
Let us continue there :)
Best regards,
Yigit
Hello,
Somehow the productcategories that I made, that are functioning on laptop and IPad, are nowhere to be found when I look for them on my mobile-phone. What can I do to get them displayed?
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#top #header .av-main-nav > li > a {
font-weight: normal;
}
Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.
Best regards,
Yigit
Ho Yigit,
Yes, the triangle is at the right place.
But my sub menu is on the same level as the top menu, so this isn’t resolved.
Cheers,
Pieter
@media only screen and (max-width: 989px) {
.header_color {
background-image: url(‘http://www.wunderwanne.at/wpww/wp-content/uploads/2017/02/Header-Logo-990.jpg’) !important;
background-position: top left;
background-repeat: no-repeat; }
}
@media only screen and (max-width: 768px) {
.header_color {
background-image: url(‘http://www.wunderwanne.at/wpww/wp-content/uploads/2017/02/Header-Logo-768.jpg’) !important;
background-size: cover;
}
}
Best regard,
Daniela
Hi Andy,
no your last code is worst of:
#top .sub_menu>ul>li>a {
pointer-events: none;
}
because it make the submenu diseapered on roll out menu item.
I keep this above.
Last question I made a welcom user text on a menu and when roll over it change cusror: how can set to keep the white arrow?
Yes, we checked all of that. No license. Agency didn’t respond to her questions and told her they we stopping their service. This was about 6 months ago.
Have a funny feeling about them…
Have a nice day and keep up the good work!
Hey garnschuh,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
@media only screen and (max-width:980px) {
#top .av-flex-cells > .av_one_half {
width: 100% !important;
display: block;
}
}
This should make it 1 column instead of 2 and stacking on top of each other on ipad portrait. Let us know if this helps.
Best regards,
Nikko
Hey DROR,
Can you try to add this css code in Quick CSS (located in Enfold > General Styling):
#top .container .av-masonry.av-large-gap {
width: 100% !important;
}
Let us know if this helps :)
Best regards,
Nikko
Hey DROR,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#top .container .av-masonry {
transform: translateX(16px);
}
Best regards,
Vinay
Hi,
Glad we could help :-)
Please let us know if you should need any further help on the topic.
Best regards,
Rikard
Hey Ikyo,
I’m not sure what you are referring to since you have linked to the theme overview page, if you click the Remove Frame button in the top right hand corner of the screen you will be able to see the direct URL.
Best regards,
Rikard
Hi,
Glad you got it working and thanks for sharing your solution :-)
Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
Hi, could you help?
I am wanting to link from a read more link on the homepage to a specific colour section of another page.
I am using the below code. however it just takes me to the top of the page not the specific section.
I have assign a name to each colour section I want to link to but all links just go to the top of the assigned page.
Many thanks Vicki
Hi,
Thank you for the info and patience.
We modified the code in the Quick CSS field and then added the following script in the functions.php file.
function ava_mobile_menu(){
?>
<script>
(function($){
$(window).on("resize orientationchange", function() {
var wrap = $('#wrap_all');
if(wrap.hasClass('show_mobile_menu')) {
wrap.removeClass('show_mobile_menu');
}
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'ava_mobile_menu');
This is the new css modification.
#wrap_all {
position: relative;
}
#mobile-advanced {
right: 0;
top: -100%; /* set the mobile menu position */
-webkit-transform-origin: 100% 0;
-moz-transform-origin: 100% 0;
-ms-transform-origin: 100% 0;
transform-origin: 100% 0;
}
.avia_transform3d .show_mobile_menu #mobile-advanced {
-webkit-transform: translate3d(0, 100%, 0);
-moz-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0); /* on transition, pull down the mobile menu container */
}
.show_mobile_menu #mobile-advanced{
-webkit-transform: translate(0, 100%)!important;
-moz-transform: translate(0, 100%)!important;
-ms-transform: translate(0, 100%)!important;
transform: translate(0, 100%)!important;
}
Best regards,
Ismael
Hi,
We are very sorry for the late response. We added the css modification in the Quick CSS field and it seems to be working now. Please look at the following page.
// https://www.staging3.atcarolines.ch/shop/
This is the css modification.
@media only screen and (max-width: 736px) {
.avia_textblock pre, .responsive #top #main .products .product {
width: 45.6% !important;
margin: 0 4% 1% 0;
}
}
Best regards,
Ismael
Hi!
2.) Set the Menu and Logo Position to “Logo center, menu above” then add this in the Quick CSS field.
.html_header_top.html_logo_center .logo {
left: 0;
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
3.) Please add this in the functions.php file.
function ava_mobile_logo(){
?>
<script>
(function($){
$(window).resize(function() {
var oldSrc = $('.responsive .logo img').attr('src'),
newSrc = 'http://www.gardengatemysteries.com/wp-content/uploads/2017/01/logo-2.png';
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;
$('.responsive .logo img').attr('src', newSrc);
}).resize();
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'ava_mobile_logo');
4.) I’m sorry but you cannot set the header to be transparent on mobile.
Best regards,
Ismael
Sorry, again, but I have made some changes and almost have this as it should be but need a bit more help with the banner, please. Still need help with the dot nav, though.
I made a color section and gave it an ID of #banner, then added this into my css –
#banner {
position: fixed;
height: 280px !important;
display: block;
z-index: 500;
width: 100%;
padding: 0;
background-color: rgba(0,0,0,0) !important;
margin-top: -10px;
margin-left: -10px;
}
.html_header_transparency #top .avia-builder-el-0 .container {
padding-top: 0px;
}
#banner .container {
max-width: 100%;
padding-left: 0px;
}
The only thing is that when I use the scroll arrows, which work now that I have removed the emblem css, is the last one is 10 pixels up because of the border all around the page – how can I tweak that, please, or instead could I make a 10 pixel border around each color section? Thanks :)
Hi there,
I just tried installing the App Demo from the Enfold theme.
Now at the top of the site I am getting this message:
Warning: include(/home/content/a2pnexwpnas03_data02/32/3862732/html/wp-content/uploads/avia_fonts/Flaticon/charmap.php): failed to open stream: No such file or directory in /home/content/a2pnexwpnas03_data02/32/3862732/html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php on line 488
Warning: include(): Failed opening ‘/home/content/a2pnexwpnas03_data02/32/3862732/html/wp-content/uploads/avia_fonts/Flaticon/charmap.php’ for inclusion (include_path=’.:/usr/local/php5_6/lib/php’) in /home/content/a2pnexwpnas03_data02/32/3862732/html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php on line 488
I don’t know what to do. Thanks!
levelcoaching.co
Theme stopped being responsive
Hi there,
I am continuing to have a problem with the Mobile Banners showing – i.e if you use the Colour Section.
So within Enfold 1500 is the max. When I upload this and use it the image gets cut off on mobile. you get either some of it or none of it.
I’ve tried Center Centre, Center left , everything.
I recently even tried your other solution “scale to fit” but that just doesn’t take it all the way across on a desktop and then leaves white space between the navigation and the image on mobile – so nothing appears to work.
Is there a solution around this? Images on mobile should easily resize….not sure what the issue is with this theme, I’ve been trying to do this for the last while with this them and everytime I’ve asked for support on this I still can’t get a resolution. In this day and age this should be easily fixable.
Hi Andy,
I tried that and when I click on the custom menu link that contains the …/#tab-id-2 and the page jumps down to the tabs instead of remaining at the top. I took some screenshots. Here is what happens now…

…and this is what I want to happen…

Basically I want the link to open the correct tab but stay at the top of the page.
Thanks again!
Jonathan
Sorry to keep bumping but I realise that the emblem is also stopping my link from working on the location map, so I guess I need a much better alternative to the css, above.