Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>@Skrivener is absolutely right about the floating divs.</p> <pre><code>.valuelist { background-color: #787878; padding-left: 5px; border-radius: 5px; border: 2px solid #ffffff; position: relative; margin-top: 120px; } </code></pre> <p>and</p> <pre><code>.affordable { position: relative; margin-top: 120px; background: #0e2b6f url('../img/peel.png') no-repeat fixed left top; color: #ffffff; border-radius: 5px; border: 2px solid #ffffff; padding: 5px; font-size: 150%; text-align: center; line-height: 120%; } </code></pre> <p><strong>However, there's another issue to note:</strong></p> <p>This img tag is going to cause you headaches:</p> <pre><code>/bootstrap.css:101 img { width: auto 9; /* the 9 is an error */ height: auto; width: 100%; vertical-align: middle; border: 0; -ms-interpolation-mode: bicubic; } </code></pre> <p>because it's sizing your logo and your carousel images in tandem. If you want to address the issue of your carousel images not spanning 100% (view the site above 1330px or at 767px to see the carousel-image doesn't stretch all the way right , you'll need to add <code>width: 100%;</code> to this css:</p> <pre><code>/bootstrap.css:5983 .carousel-inner &gt; .item &gt; a &gt; img { display: block; line-height: 1; width: 100%; /* add this one to fix span issue */ } </code></pre> <p>which, if I remember right, is being compiled from your gem (if Rails). So, you may have to add this shorter version to your bootstrap-and-overrides.css:</p> <pre><code>/bootstrap-and-overrides.css .carousel-inner &gt; .item &gt; a &gt; img { width: 100%; /* add this one to fix span issue */ } </code></pre> <p><strong>And another thing</strong> I know you said you're not too up on media queries, but you have crazy top margins below 767px when the spans collapse.</p> <p>I would encourage you to add this to your <code>bootstrap-and-overrides.css</code> file:</p> <pre><code>@media (max-width) { .affordable, .valuelist { margin-top: 0px; } } </code></pre> <p>Which will clean up the blank spaces on the page nicely.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload