Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Little different edit.Yes it work.
if I want the content of the top header bar to be the same width as the forum content, is it possible to accomplish?
View attachment 14946
<div class="canvas-header-inner">
<div class="canvas-header" data-xf-init="sticky-header">
.canvas-header
{
display: block;
.canvas-header-inner
{
max-width: 1600px;
display: flex;
align-items: center;
margin: 0 auto;
width: 100%;
}
}...
Is it possible to only applied that to the forum body and canvas navigation, not the actual top header bar where the logo and the search is?You can add:
Code:.xb-page-wrapper { max-width: 1600px; margin: 0 auto; }
To your extra.less and it will put a max-width on the container and center it. You might need to make some further adjustments to make it look a little normal.
Yes it work.This should do it:
Code:.canvas-wrapper { max-width: 1600px; margin: 0 auto; }
Little different edit.Yes it work.
if I want the content of the top header bar to be the same width as the forum content, is it possible to accomplish?
View attachment 14946
<div class="canvas-header-inner">
<div class="canvas-header" data-xf-init="sticky-header">
.canvas-header
{
display: block;
.canvas-header-inner
{
max-width: 1600px;
display: flex;
align-items: center;
margin: 0 auto;
width: 100%;
}
}
.canvas-wrapper
{
max-width: 1600px;
margin: 0 auto;
width: 100%;
}