CSS Classes
This table contains all classes related to the content detached right sidebar layout. This is a custom layout classes for content detached right sidebar layout page requirements.
All these options can be set via following classes:
Classes | Description |
---|---|
content-detached-right-sidebar
|
You can create 3 column detached right layout by
adding
.content-detached-right-sidebar
class in <body> tag.
|
content-detached |
In this layout content section is detached from
right sidebar, for that
.content-detached class needs to
add in content wrapper.
|
content-left |
In this layout content should be float in left
side, so .content-left class needs
to add in content wrapper.
|
sidebar-detached |
In this layout right sidebar section is detached
from content, for that
.sidebar-detached class needs to
add in sidebar wrapper.
|
sidebar-right |
In this layout sidebar should be float in right
side, so .sidebar-right class needs
to add in sidebar wrapper.
|
This section contains HTML Markup to create 3 column
detached right sidebar layout. You need to add the
content-detached-right-sidebar
class in the
<body>
tag as show in below. This
layout has a navigation, content and right detached
sidebar sections with common header & footer.
-
Contain the
.content-detached
and.content-left
classes for adjusting detached content section in left side. -
Contain the
.sidebar-detached
and.sidebar-right
classes for adjusting detached sidebar section in right side.
<!DOCTYPE html>
<html lang="en">
<head></head>
<body data-menu="vertical-menu-modern" class="vertical-layout vertical-menu-modern content-detached-right-sidebar navbar-sticky footer-static menu-expanded">
<!-- BEGIN Content-->
<div class="content-wrapper">
<!-- content header-->
<div class="content-header row">
...
</div>
<!-- content header-->
<!-- content detached left-->
<div class="content-detached content-left">
...
</div>
<!-- content detached left-->
<!-- sidebar detached right-->
<div class="sidebar-detached sidebar-right">
<div class="sidebar">
...
</div>
</div>
<!-- sidebar detached right-->
</div>
<!-- END Content-->
</body>
</html>