留言板

Breakpoints

SCOTT GEMMELL,修改在10 年前。

Breakpoints

New Member 帖子: 10 加入日期: 14-2-17 最近的帖子
How can I change responsive breakpoints in a Liferay theme?
thumbnail
Daniel Tyger,修改在10 年前。

RE: Breakpoints

Regular Member 帖子: 105 加入日期: 13-2-6 最近的帖子
I think you mean to address the widths at which things change? Go through all the files in /css folder with the word "responsive" in them. You'll find where you could adjust the widths at which items are transformedfor tablets, phones, desktop...

Also, you can of course create your own breakpoints for specific things and transform them with your own CSS at the end of custom.css...

In variables.scss, you see things like this:
// Navbar
// -------------------------
$navbarCollapseWidth:             979px !default;
$navbarCollapseDesktopWidth:      $navbarCollapseWidth + 1;


and that variable shows up later in _responsive-navbar.scss :
// TABLETS AND BELOW
// -----------------
@media (max-width: $navbarCollapseWidth) {


Not sure if this is helpful...