mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Fix strange carousel width on http://gohugo.io/
The solution is to add `table-layout:fixed` when `display:table` is used as per the answer given at: http://stackoverflow.com/questions/21230184/owl-carousel-inside-a-table-cell-parent-makes-parent-to-expand-weird Fixes #1465
This commit is contained in:
parent
218554e363
commit
08d41c3a48
2 changed files with 4 additions and 3 deletions
|
@ -20,8 +20,8 @@
|
|||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
|
||||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
||||
<style type="text/css">
|
||||
.owl-carousel a {
|
||||
white-space: nowrap;
|
||||
.callout {
|
||||
table-layout: fixed;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
@ -89,7 +89,7 @@
|
|||
<div class="row">
|
||||
<div class="col-md-6 col-md-offset-3 text-center">
|
||||
<i class="lead-icon icon-rocket"></i>
|
||||
<h2>Fast & Powerful</h2>
|
||||
<h2>Fast & Powerful</h2>
|
||||
<p class="lead">
|
||||
|
||||
Hugo is written for speed and performance. Great care has been
|
||||
|
|
1
docs/static/css/HPstyles.css
vendored
1
docs/static/css/HPstyles.css
vendored
|
@ -167,6 +167,7 @@ a:hover {
|
|||
.callout {
|
||||
color: #ffffff;
|
||||
display: table;
|
||||
table-layout: fixed;
|
||||
height: 420px;
|
||||
width: 100%;
|
||||
background-color: rgb(118,156,172);
|
||||
|
|
Loading…
Reference in a new issue