Hi,
As you can see in the link, you cannot read the breadcrumb because is on the top of the page title.
Also the breadcrumb that is being generated for some portfolio items is wrong.
How can i fix these issues?
Hi saquasar!
I can see the problem, please try this in Quick CSS under Enfold–>General Styling, it’s going to make the title/breadcrumb area look a bit different on screens smaller than 1024px, I hope you like it.
@media only screen and (min-width: 415px) and (max-width: 1024px) {
.stretch_full.container_wrap.alternate_color.dark_bg_color.title_container{
height: 70px !important;
}
.title_container .breadcrumb {
top: auto !important;
}
}
Regards,
Rikard
Hi,
how about to make it like you have it in this page the breadcrumb on the bottom of title and aligned left or center both title and breadcrumb??
Hi!
Use this:
.title_container .breadcrumb {
position: relative;
right: auto;
top: 0;
margin-top: 0px;
padding-bottom: 8px;
overflow: hidden;
left: -2px;
}
Regards,
Ismael
use the following:
.title_container .breadcrumb { right: auto; left: 47px; top: 75%; }
.title_container .main-title { top: -6px; }
Yes both of them are working.
thanks a lot guys for your help!