Tagged: breadcrumb, CSS, title
Love the theme! Please supply me w/ the CSS to put the page title on the right and breadcrumbs on the left.
I got this to work:
.breadcrumb {
left: 0;
}
But I’m not having any good results with attempting code like:
#top .title_container .main-title a {
text-align: right;
}
or
#top .title_container .main-title a {
right:0;
}
Pls help!
OK, I think I may have figured it out. Will this cause any responsive design problems?
#top .title_container .main-title a {
position: absolute;
right: 0;
}
.breadcrumb {
left: 0;
}
Hi!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.title_container .main-title { float: right; }
.title_container .breadcrumb { right: auto; left: 0; }
Best regards,
Yigit
Thank you. Works great!