I´m a bit confused. I´m using the Full Screen Slider on my homepage at http://www.der-prinz.de but with one single image. That´s fine and I liked the smooth animation of the caption and button that came from top and botton fading in.
Today I only changed my slider image and suddenly I get a completely different animation of the caption. It slides in from left and right. not a very big thing, but I want to know how that can be.
Cheers
Michael
Hello. My client http://shinecharlotte.com wants the VERY TOP HEADER TABS, “Book Appointment” and “Gift Certificates” to really STAND OUT. They wanted it “in a box to be more easily seen.”
I have NO idea how to do such.
Would it be possible to either (a) ENLARGE the font to somewhere between the current size of the phone number and a bit larger, or (b) create some sort of BORDER that would make it “pop” ?
I tried making the BACKGROUND a different color, but the “secondary color” of the current site — yellow — was TOO DISTRACTING.
Thank you!
voicepro
http://shinecharlotte.com
Hi,
it was a tricky, but I didn’t see these global settings…
Thanks a lot !!
Hi,
1) The breadcrumb reflects your page hierarchy. If you want to show Home >About Us > Our Community in the breadcrumb you must set the “About Us” page as the parent page of “Our Community”. It’s not possible to build a structure like Home >About Us > Our Community if an “About Us” page doesn’t exist or if the “About Us” page is not the parent page of “Our Community”.
If you don’t want to show the “Home” link in the breadcrumb add following code to the bottom of functions.php
add_filter('avia_breadcrumbs_args', 'avia_remove_home_breadcrumb', 10, 1);
function avia_remove_home_breadcrumb($args){
$args['show_home'] = false;
return $args;
}
2) Probably I already answered this question with 1) but if you still want to change the color use following css code
#top #main .breadcrumb a.trail-begin {
color: #ffffff;
}
Glad its working for you now :)
@condormarketing – Just for future posts, our queue system goes by oldest posted topic to newest. So each time you self respond it actually pushes your topic to the end of our queue.
Hi Michael,
Please see this topic https://kriesi.at/support/topic/kriesi-logo/
Regards,
Yigit
Hello stevewhite06 – I had the same issue. .entry-content looks to have been changed to .entry-content-wrapper. I don’t think this was mentioned in the changelog but Kriesi explains the change here…
https://kriesi.at/support/topic/changed-and-added-classnames/
btw… This should work for you…
Change: #top .entry-content h1 { color: #58585a; }
to
#top .entry-content-wrapper h1 { color: #58585a; }
It seems like your menu name includes Cyrillic characters and this can break our menu script. A quick fix is to rename the menu. Just use latin characters for the menu name and re-save it. Eg call the main menu “Main Menu” and the top menu “Sub Menu” and it should work.
We’ll change the menu classes & ids in the next version and then you should be able to use Cyrillic, Greek, etc. characters for the menu(s) too without breaking the menu script.
Hey,
You can add this on your custom.css or Quick CSS to remove the padding and the border:
#top div .avia-gallery img {
padding: 0;
border: none;
}
Regards,
Ismael
Hi,
You can move the menu using this:
.main_menu {
right: 80px;
top: 20px;
}
Adjust the top and right position.
Regards,
Ismael
For item #3 I found a solution that alters only the Title text font and color and doesn’t affect the breadcrumb links on the right side.
This may not work for your site. I’m using “Fixed header with Social Icons and additional navigation” for my header.
For title text color add to Custom CSS or Quick CSS
#top .alternate_color.title_container .main-title a { color: #CCC; }
change the color # to whatever value you would like.
For title text font attributes add to Custom CSS or Quick CSS
#top .title_container .main-title { font-size: 16px; font-weight: bold; }
change these values to whatever you would like–the font-size affects the size of the breadcrumbs box.
Good luck,
Chad
Hi,
Go to LayerSlider WP > Slides > Global Settings > Slideshow > Automatically play videos. Turn if off.
Regards,
Ismael
Hi,
Please move the code on the custom.css or Quick CSS field. Add this lines:
@media only screen and (min-width: 768px) and (max-width: 989px) {
.logo {
width: 230px;
margin-top: 50px;
}
}
Regards,
Ismael
Hi – I’m using a small, non-fixed header and want to move the menu items down in the header probably with {vertical-align: 30%}. I cannot for the life of me work out what css selectors I need to use to achieve it.
My intention is to have the logo behind the menu so it can display some address details at the top of the page, and I need more room above the menu, but don’t want the header any larger.
Any help gratefully appreciated.
Ismael,
I can’t link you the website and don’t have time to make a screenshot sadly. (I know, I know)
You were pretty much on point with what I wanted to do. You code works fine but when I make more than one Custom CSS Class for the quick CSS, my images vanish except the first one.
So I have three sections on the same page, in each of these sections there is a paragraph of text and a header in a 1/2 column. These three sections are separated by default Hr dividers. I essentially want three different pictures that will slide in beside the paragraphs of these three sections. These pictures will be large and for stylistic reasons I want them to align with the text but at the same time overlap the Hr dividers if need be. Your solution above seemed to work for this after I added a z-index.
My question to you is can I accomplish this by placing the image another 1/2 column beside the 1/2 column with the paragraph? And if not (manually adjust left and top position), how come I can’t get all three pictures to display if I assign them different CSS Classes and give them separate properties in Quick CSS?
Hope that made more sense.
If you want to see an example, http://www.apple.com uses this a lot.
Hi,
1. This will change the height without affecting the dropdowns:
#top .main_menu .menu > li > a, #header_main .container{ height: 65px !important; line-height: 65px !important}
2. This one will change the color of the current-menu-item to red:
#top .main_menu .current-menu-item > a{ color: red}
3. And this will change the color/size of the text and links inside the breadcrumb container respectively.
.breadcrumbs span{ color: red !important; font-size: 21px !important; }
.breadcrumbs a{ color: blue !important; font-size: 21px !important; }
Regards,
Josue
Hello, Enfold is great! Please provide the CSS customizations for the following, if possible:
1. I would like to shorten the height of menu without ruining the drop down. I’ve tried the code below but it messes up the drop down menu:
#top .main_menu .menu li>a { height: 65px!important; line-height: 65px!important}
2. Change the active menu link color. Other ones I’ve found only changed the drop down item color
3. Change the title color/size (where the breadcrumbs were)
Hola Xavier,
Try this code:
.logo{ top: 80px; position: relative; background: #ffd2d3; padding: 20px; height: auto; }
The result:

Regards,
Josue
-
This reply was modified 12 years, 5 months ago by
Josue.
Hi Trap,
You are welcome. I’m closing this thread for now. If you have any questions after update, feel free to open a new topic.
Regards,
Yigit
Hi,
Please add following code to Quick CSS in Enfold theme options under Styling
#top .main_menu .menu>li:last-child>a { padding-right: 13px; }
Regards,
Yigit
Well cutting down on menu options is not an option.
Thank you for suggesting the solution of when the menu switches to the mobile menu.
I’ll give that a shot.
Thanks,
-Courtois
Hi,
I have an issue with product category size
On this page for example : Category page
The category image on top is displayed in W430 H360
The actual size is W430 H480
In other categories the size is fine, but some is not .. its weird
I have checked woocommerce settings, media settings, i have deleted the image permanently with ftp, i have test force regenerate thumbnails plugin but no luck! It drives me crazy
Do you have any idea how to fix it?
regards
Mario
Hi
I already read this topic and try it out – this is not my question! im talking about the logo size without scrolling down… thx
best
Dear Ygit,
Thanks to reply.
I do not have any problem with my footer. my problem come frome the widget.
I add the widget PAGES on my footer. Could I present a title on top of my widget PAGES like “MENU” or SUMMARY”?
Thank you
Stéphane.
Hi everybody,
a few months ago NICK has helped me to get a little customization done to get other toggles removed from the page if one of the toggles is clicked and open.
see here:
https://kriesi.at/support/topic/hide-toggles-if-a-toggle-is-open/
im currently updating my theme and i have realized that kriesi has updated and changed the toggle code a little bit.
Can someone please help me adding the customization to the new toggle code?
many thanks in advanced ;)
Aloha!
Please add following code to Quick CSS in Enfold theme options under Styling
.main_color.iconbox_top .iconbox_icon { background-color: #EE5625; }
This should do it
Regards,
Yigit