/** Shopify CDN: Minification failed

Line 14:24 Unexpected "-"
Line 18:243 Unterminated string token
Line 19:166 Unterminated string token
Line 21:187 Unterminated string token
Line 23:269 Unterminated string token
Line 27:212 Unterminated string token
Line 31:26 Expected identifier but found whitespace
Line 32:83 Expected identifier but found whitespace
Line 45:385 Unexpected "}"

**/
LP-032 Ornexis Overview - Manus
Usman L
U
remove the spacing from the header. 
I can see the white gap between the dark header bar and the content below it. That gap is coming from the Shopify theme's default <main> element padding or margin that sits above the page content. Let me find and remove it with a CSS override.
The header's white gap originates from default theme margin or padding. I plan to override these styles with CSS to eliminate the space and ensure seamless alignment.

I examined the header and surrounding sections. Found the white gap likely caused by default margins or padding in the header wrapper. Next, I'll override these styles with CSS to fix it.

Found it. The white gap is caused by the browser's default body { margin: 8px } — this is the default user-agent stylesheet margin that browsers apply to <body>. Since the template uses {% layout none %} (no Shopify theme wrapper), there is no theme CSS resetting it.
The fix is a single CSS rule. Let me add it to the CSS asset now.
The 8px white gap is caused by the browser's default body margin. I'll add CSS to reset the margin, fixing the spacing before updating the style file.

Fixed. The white gap was caused by the browser's default body { margin: 8px } — since the template uses {% layout none %}, there is no Shopify theme CSS to reset it. Two rules were added to lp032-ornexis-4.css:
CSS
body { margin: 0; padding: 0; }
#lp032-ornexis { margin: 0; padding: 0; }
What to update in Shopify:
Replace only lp032-ornexis-4.css in the Assets folder with the file attached above. No other files need to change.
lp032-ornexis-4.css
Code · 4.29 KB
View all files in this task
I identified that the white gap was caused by the default body margin. Added CSS to reset margins and padding, fixing the spacing issue. Next, I will update the CSS file in Shopify.

Task completed
Suggested follow-ups


Google Drive


#lp032-ornexis .gps-603220517754831647.gps.gpsil [style*="--pt-tablet:"]{padding-top:var(--pt-tablet)}#lp032-ornexis .gps-603220517754831647.gps.gpsil [style*="--w-tablet:"]{width:var(--w-tablet)}#lp032-ornexis .gps-603220517754831647.gps.gpsil [style*="--line-clamp-tablet:"]{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:var(--line-clamp-tablet)}}@media only screen and (max-width:767px){#lp032-ornexis .gps-603220517754831647.gps.gpsil [style*="--pl-mobile:"]{padding-left:var(--pl-mobile)}#lp032-ornexis .gps-603220517754831647.gps.gpsil [style*="--pr-mobile:"]{padding-right:var(--pr-mobile)}#lp032-ornexis .gps-603220517754831647.gps.gpsil [style*="--w-mobile:"]{width:var(--w-mobile)}#lp032-ornexis .gps-603220517754831647.gps.gpsil [style*="--line-clamp-mobile:"]{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:var(--line-clamp-mobile)}}#lp032-ornexis .gps-603220517754831647 .gp-g-paragraph-1{font-family:var(--g-p1-ff);font-size:var(--g-p1-size);font-style:var(--g-p1-fs);font-weight:var(--g-p1-weight);letter-spacing:var(--g-p1-ls);line-height:var(--g-p1-lh)}#lp032-ornexis .gps-603220517754831647 .gp-relative{position:relative}#lp032-ornexis .gps-603220517754831647 .gp-mx-auto{margin-left:auto;margin-right:auto}#lp032-ornexis .gps-603220517754831647 .gp-mb-0{margin-bottom:0}#lp032-ornexis .gps-603220517754831647 .gp-flex{display:flex}#lp032-ornexis .gps-603220517754831647 .gp-grid{display:grid}#lp032-ornexis .gps-603220517754831647 .\!gp-hidden{display:none!important}#lp032-ornexis .gps-603220517754831647 .gp-hidden{display:none}#lp032-ornexis .gps-603220517754831647 .gp-max-w-full{max-width:100%}#lp032-ornexis .gps-603220517754831647 .gp-grid-rows-\[1fr\]{grid-template-rows:1fr}#lp032-ornexis .gps-603220517754831647 .gp-flex-col{flex-direction:column}#lp032-ornexis .gps-603220517754831647 .gp-transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}#lp032-ornexis .gps-603220517754831647 .gp-duration-200{transition-duration:.2s}#lp032-ornexis .gps-603220517754831647 .gp-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}@media (max-width:1024px){#lp032-ornexis .gps-603220517754831647 .tablet\:\!gp-hidden{display:none!important}#lp032-ornexis .gps-603220517754831647 .tablet\:gp-hidden{display:none}}@media (max-width:767px){#lp032-ornexis .gps-603220517754831647 .mobile\:\!gp-hidden{display:none!important}#lp032-ornexis .gps-603220517754831647 .mobile\:gp-hidden{display:none}}#lp032-ornexis .gps-603220517754831647 .\[\&_\*\]\:gp-max-w-full *{max-width:100%}

#lp032-ornexis .gp_location-custom span u{
    text-decoration: none;
}

#lp032-ornexis [data-id="guJuT5SE4z"].gp-button-base::before, #lp032-ornexis [data-id="guJuT5SE4z-interaction"].gp-button-base::before{
      
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    border-style: solid;
  border-width: 0px 0px 5px 0px;
  border-color: #187627;
  
    
      border-bottom-left-radius: 12px;
      border-bottom-right-radius: 12px;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      
  
    }
  
      
  #lp032-ornexis [data-id="guJuT5SE4z"]:hover::before, #lp032-ornexis [data-id="guJuT5SE4z-interaction"]:hover::before{
    
    
  }

#lp032-ornexis .cart-item--product-remotecontrol, #lp032-ornexis .cart-item--product-3x{display: none !important;} #lp032-ornexis .cart-item--product-free-shipping{display: none;} #lp032-ornexis cart-drawer-items + .icon-with-text + .icon-with-text{display: none;}

#lp032-ornexis .loox-reviews-default{ max-width: 1200px; margin: 0 auto; }#lp032-ornexis .loox-rating .loox-icon{ color:#EBBF20; }
#lp032-ornexis{ --lxs-rating-icon-color: #EBBF20; }

/* Testimonial star + heading: stars inline before heading text */
#lp032-ornexis .custom-star {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  flex-wrap: nowrap;
}
#lp032-ornexis .custom-star img {
  display: inline-block;
  max-width: 100px;
  height: auto;
  flex-shrink: 0;
}

/* Remove browser default body margin that causes white gap around the page */
body { margin: 0; padding: 0; }
#lp032-ornexis { margin: 0; padding: 0; }
