Renovo MD - www.RenovoMD.com - 🔴 SEO client 🔴 - VJ

This is for a client who already has a website we can use that we just need to optimize.

something is wrong with CS landing page please check

Assigned to
Alyssa Workman, Medstar Alyssa W. Hector Mota, Operations Manager at Medstar Hector M. Isaac Klausnser, Medstar Isaac K.
Notes
Hector Mota, Operations Manager at Medstar Hector Isaac Klausnser, Medstar Isaac Alyssa Workman, Medstar Alyssa  please do some detective work

Comments & Events

Alyssa Workman, Medstar
whitney.zelig@gmail.com, Medstar whitney.zelig@gmail.com the offer and pop-up seem okay. The only thing I could suggest trying would be changing the background color of the gravity form so it stands out more. Will see what Hector or Isaac finds.


Isaac Klausnser, Medstar Isaac any way to make the 50% Off on the GFs bigger and bolder? Can I add font size into the HTML styling by breaking up the offer and the 'coolsculpting elite'? Would I need to divide the styling with more than just a <br/> though? So the code would look like this:

<h2 style="margin-bottom: 5px; position: relative; bottom: -35px; text-align: center; font-size= 35px">50% OFF*</h2>
<h2 style="margin-bottom: 5px; position: relative; bottom: -35px; text-align: center; font-size= 25px;" />COOLSCULPTING ELITE</h2>

OR it can keep the same styling and add font-size specifications like this: 
<h2 style="margin-bottom: 5px; position: relative; bottom: -35px; text-align: center; font-size: 35px;">50% OFF*<br style="margin-bottom: 5px; position: relative; bottom: -35px; text-align: center; font-size: 25px;" />COOLSCULPTING ELITE</h2>

Trying to put the coding I am learning to use, maybe I am completely off here. Thanks for verifying. 
Isaac Klausnser, Medstar
whitney.zelig@gmail.com, Medstar whitney.zelig@gmail.com - I checked the page and all looks good from the functionality perspective. All the forms are working fine and content is not getting cut off. Image are loading properly.

The page speed is little slow though.

Awesome Alyssa Workman, Medstar Alyssa - You are already writing the inline styles. It took me ages to reach this level..hah.

Coming to your code. It would have worked if we had a single form and also ignored the SEO. Going above way we would have multiple H2 tags which is not recommended and also a lot of repeated code since we have 3 forms sharing the same style.

So in this case. I followed the concept of DRY (Do not repeat yourself) which I am pretty sure you must have also heard about in your course and for that I added a class to the form title of all three forms and used it while targeting the element in css. Same classes can be shared among different elements. I used the below code to style the form title on all 3 forms.

<p class="cs-form-title">50% OFF* <span> COOLSCULPTING ELITE</span></p>

.cs-form-title {
  text-align: center;
  font-size: 35px !important;
  padding-bottom: 0;
  margin: 15px 0 0;
}
.cs-form-title span {
  display: block;
  font-size: 25px !important;
  margin-top: 15px;
}
Hector Mota, Operations Manager at Medstar
This brings back memories of when I was into coding.
My brain no longer wants to handle the <div></div> and other paradigms.
 
For me, this LP https://renovomd.com/coolsculpting-northborough/
is doing pretty bad on pagespeed insights.
The page scored a 6 on mobile and 54 on desktop.


Interestingly enough, it appears that the LP is 2nd in position as far as the top pages for this client though.

Alyssa Workman, Medstar
Thanks Isaac Klausnser, Medstar Isaac ! I am familiar with DRY and was getting the css mixed a little with setting variables with JS because with variables I can repeat some things, but in either case, I would have had to still create individual class elements because of the multiple forms. Seeing how you created the <span> and <p> as 2 different class elements makes sense. I also saw you had to create it in the overall page CSS, where I was thinking to add it just on the form CSS. Thanks for taking the time to explain it and show me! 
whitney.zelig@gmail.com, Medstar smarties!
Alyssa Workman, Medstar
Alyssa Workman completed this to-do.