I am trying to get the bootstrap nav bar to go right of the layer but it is sticking to the left side, why is that.
I have right in the layer properties but it is still sticking to the left
Image: https://ibb.co/Mk2bWnN
Why Is Bootstrap Nav Bar Sticking To The Left
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Re: Why Is Bootstrap Nav Bar Sticking To The Left
I cannot see what you have done based on the screenshot.
To be able to help you, I need a demo project.
Related FAQ:
http://www.wysiwygwebbuilder.com/forum/ ... 10&t=82134
To be able to help you, I need a demo project.
Related FAQ:
http://www.wysiwygwebbuilder.com/forum/ ... 10&t=82134
Re: Why Is Bootstrap Nav Bar Sticking To The Left
Here is a sample project, you will see that bootstrap nav bar sticks to the left no matter what you do.
Open in a large screen to see the full nav bar not the responsive view.
Dropbox link: https://www.dropbox.com/s/nbolplqu9ejdy ... e.zip?dl=0
Open in a large screen to see the full nav bar not the responsive view.
Dropbox link: https://www.dropbox.com/s/nbolplqu9ejdy ... e.zip?dl=0
Re: Why Is Bootstrap Nav Bar Sticking To The Left
The implementation of the breakpoints is not correct.
The default view should be the widest view.
Also, it is not very common to add a breakpoint for 1920
The default view should be the widest view.
Also, it is not very common to add a breakpoint for 1920

Re: Why Is Bootstrap Nav Bar Sticking To The Left
That is why all the links are sticking to the left, I need it to be on the right, the links refuse to move to the right of the bar
Re: Why Is Bootstrap Nav Bar Sticking To The Left
Sorry for being a pain but this image will better explain what I am trying to do, the links stick to the right no matter the changes to the layout grid
Image: https://imgur.com/a/XBv86eC
Image: https://imgur.com/a/XBv86eC
Re: Why Is Bootstrap Nav Bar Sticking To The Left
First, you will need to fix the breakpoints. This is not the correct way to implement breakpoints.
To float the buttons to the right, you can add this code:
To float the buttons to the right, you can add this code:
Code: Select all
<style>
.Extension1 ul
{
float: right !important;
}
</style>