Hello John,
That’s strange…when I first tried to customize the top bar background under “Erweitertes Styling”, it has no effect. Then Mike provided some CSS to control the top bar’s bg color via the Quick CSS feature, which worked fine, of course.
When I checked again today, now the customized element works fine, i.e. I can define the top bar’s bg color without the need of any Quick CSS.
P.S.: My installation is in German, so I translated “Erweitertes Styling” to “extended styling” – anyway, it’s the Enfold tab below General Styling, the one with the magic wand icon, where it says: “Here you can select a number of different elements and change their default styling”
So, no idea why it didn’t work from the start, but thanks for all your help. From my side this thread can be closed.
Thanks,
Thomas
Formidable suggested this
#top select, #top .avia_ajax_form .select, #top .entry-content-wrapper
select {
-webkit-appearance: menulist !important;
Now the dropdowns look like dropdowns
Hi Rikard,
Not exactly as i want to, but it will do. Iff you check the link in private previous post you will notice that the thumbs are the way i want them to be, but i cant’t get them a little bit bigger and under each-other.
This is my code now;
[av_one_full first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
[av_portfolio categories='23' columns='2' one_column_template='special' items='-1' contents='' preview_mode='auto' image_size='portfolio' linking='' sort='no' paginate='no' query_orderby='date' query_order='DESC']
[/av_one_full]
Hi,
Great, glad you got it working. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
Hi,
Ok, 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 Adrian,
Thanks for the feedback. PHP 7.1 is relatively new so I think staying with 7.0.x is the safer option. 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 got it working. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
Hi,
Ok, thanks for the feedback and glad you got it working. 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 got it working and thanks for the feedback. We’ll keep the thread open in case you should have any further problems on the topic.
Best regards,
Rikard
Hi,
Did clearing your cache work out or not? Please let us know if you should need any further help on the topic.
Best regards,
Rikard
Hi,
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
Hey vaibhavbhutoria,
That won’t be possible unfortunately but you could create new sections to only show on mobile. If you assign them an ID in the element options you can then use CSS like this to hide/show the correct sections:
@media only screen and (min-width: 768px) {
#section-desktop {
display:block !important;
}
#section-phone {
display:none !important;
}
}
@media only screen and (max-width: 767px) {
#section-desktop {
display:none !important;
}
#section-phone {
display:block !important;
}
}
Best regards,
Rikard
Hi,
You can replace the default height by your custom adding this custom CSS code at Enfold Theme Options > General Styling > Quick CSS
.avia-slideshow ul.avia-slideshow-inner {
height: 500px !important;
overflow: hidden;
}
But this code will cut your image, so, you can use this code to align the image correctly:
.avia-slideshow li img {
margin-top: -20%;
position: relative;
}
just adjust the image with the negative margin-top.
Best regards,
John Torvik
Hi Mike,
Ok, 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
Hello Support,
My friend would like the audio on the homepage video background to play:
http://thievesofreason.com/
I looked in your forum and found this post (#691614), but neither solution posted worked for me.
There’s currently a workaround using SoundCloud to play an audio file; however, he’d really like the actual video audio to play – so it’s in sync, etc.
Can you help please?
Sincerely,
Greg
-
This topic was modified 8 years, 11 months ago by
Donkies11. Reason: forgot closing parenthesis
The forums have been a huge help in customizing my site but I am still having a few small issues that I cannot find fixes for. I’ve included example of what I am trying to replicate in my wordpress site.
1. I’d like to be able to customize the button to be a larger version of light transparent text in box with clickable link that changes color on mouseover. This will be placed in center of each color sections with parallax background images.
2. Is it possible to increase parallax effect on desktop and replicate parallax effect on mobile?
The website is near complete and fairly simple. I love the new hamburger menu.
-
This topic was modified 8 years, 11 months ago by
AMseptemeber. Reason: Password updated
Hey,
first at all: Great theme, great job. thank you, guys!
Is it possible to change the breadcrumps position to another section? I would like to have it above the logo area on the right side.
I’ve found this post with same issue: https://kriesi.at/support/topic/change-the-position-of-the-breadcrumps/
Unfortunately, the solution doesn’t work. Maybe it’s to old?!
Do you have any idea?
Thank you in advance.
Greetings from Berlin :)
Taken a long time to getting round to trying this but your suggested edit to functions.php only resulted in totally breaking the website and took a while to recover as even restoring the original php file did not fix it!!!!! Surely this should be a css issue. If people select the facebook link when using a mobile rather than a bigger screen pc they should be shown a different link that directs them to the mobile app url. I can do this with a normal website using media queries but have no idea how this can be done using a wordpress enfold website. This is quite an important feature that is missing as so many people view using a website yet are being directed to the desktop facebook login rather than a link to the facebook app which starts fb://profile/profilenumber rather than https://facebook/username.
Below is an example of how I achieved this on a html website..
<div class=”widget widget-social”>
<div class=”social-media”> <i class=”fa fa-facebook”></i>
<div class=”social-media”> <i class=”fa fa-facebook”></i>
css media query used bootstrap css as per these few lines
@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px)and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px)and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important
Hey Victoria,
Sorry! I changed that page since I posted this issue. I didn’t hear back for a few days so I decided to use the masonry gallery. Im not having this issue on desktop but I am on mobile still.
Can you go to my site on a phone: ccyran.com/work
Try to scroll down and you’ll see that the page does this weird jump. Almost like it hesitates to scroll down. Let me know if you see it, and thanks again for helping me.
Hi Kriesi .. I just paid for extended support just to fix this problem. I really need help here! My Lightbox problem is broken down into 2 related questions..
1. In my grid, when clicking on the title which launches lightbox, two lightboxes are launching and overlapping each other.. One from my Enfold theme and one layered above from Essential Grid. I want to turn off the Enfold Lightbox and use Essential Grid’s, or I may buy another Lightbox plugin .. but when I turn off the Enfold Lightbox, NO light box works at all..
I had ran into this problem some time ago and you had submitted a custom script to insert in to my settings as well as a modification to the ‘avia.js’ file. I’ve tried both again now and cannot fix this problem. The ticket can be seen here: https://themepunch.ticksy.com/ticket/258315/ or https://kriesi.at/support/topic/duplicate-lightboxes/#post-762022
2. The second problem is that if using the Enfold Lightbox, once I load more portfolio items (LOAD MORE btn at bottom is white..) and launch Lightbox, the Lightbox arrows only cycle through the first batch of 6 portfolio posts that is loaded.. not any additional ones via the ‘load more’ button
link: http://dev.100eight.com/portfolio_test/ (click on any post title but the first one to experience the problem)
-
This topic was modified 8 years, 11 months ago by
nulrick.
Never mind, I found it here.
https://kriesi.at/support/topic/footer-mobile-view/#post-759946
Seems like this should be a setting in the Footer options for the theme.
Hello
My page is below, in the private area. I have looked at lots of posts and tried the css below. I have added the class ttDescr to just the first hotspot, which is the top left. Its supposed to be centered text, not justified, and it should also have a tight line height and be bold but for some reason these are not being applied. Please advise and thanks in advance!
.av-hotspot-container .av-image-hotspot_inner {
text-align: center;
}
/* hotspot tooltip hover */
.avia-tooltip .avia-arrow {
display: none;
}
.avia-tooltip {
/* dk grey */
background: rgba(51, 51, 51, 1) !important;
border: solid 1px #fff !important;
}
/* custom class to style text */
.ttDescr {
font-size: 14px !important;
line-height: 14px !important;
color: #fff !important;
font-style: normal;
font-weight: bold;
text-align: center !important;
}
Hi,
Thanks for the login. It’s done, I have added this code in Quick CSS (located in Enfold > General Styling):
@media only screen and (max-width:767px) {
#top #advanced_menu_toggle {
border-color: #fff;
}
}
Then in functions.php I searched for this code:
'mobile_menu' => array( 'font' =>'entypo-fontello', 'icon' => 'ue8a5'),
and replaced it with:
'mobile_menu' => array( 'font' =>'entypo-fontello', 'icon' => 'ue811'),
Hope this helps :)
Cheers!
Nikko
Hi,
You can add some value after the top in the code, for example change this:
background: #fff url('http://domain.com/enfold/wp-content/uploads/2017/02/logo.png') left 30px top no-repeat;
to
background: #fff url('http://domain.com/enfold/wp-content/uploads/2017/02/logo.png') left 30px top 10px no-repeat;
Just adjust it as you see fit :)
Best regards,
Nikko
Hi,
To align your logo, just add this custom CSS code at Enfold Theme Options > General Styling > Quick CSS
@media only screen and (max-width: 767px) {
.responsive .logo img {
top: 22px;
}
}
Let me know if it works :)
Best regards,
John Torvik
Hi Jordan,
I solved it already. Thanks.
Hey fxkreative!
They should be working with no issue, as they are related to WooCommerce and not something else.
Try them and let us know or the plugin developer for any issue I am sure they will be more than happy to help you
as Enfold is top selling on Envato and they will do love to have compatibility.
Thanks a lot
Regards,
Basilis
Hi!
I am taking a Not founding trying to load
http://new.wynncap.com/
are we closing the topic here?
Cheers!
Basilis