Need to Edit Demo Content

Dear Sir/Madam,
I have installed demo content with Pro. I However, I have been trying to remove the logo from the position it is with the demo content. I have created a new nav menu and with a new logo position. Please see screenshot attached.

Hello @ASIDCam,

Thanks for writing in!

You are using the MLaw demo site. Be advised that this unique demo design is using custom CSS to display the logo on the left which is rotated vertically. Go to Cornerstone > Theme Options > CSS and find this CSS block:

@media (min-width: 1441px) { /* 01 */
  .site:before,
  .site:after {
    content: "";
    display: block;
    position: absolute;
    background-image: url(https://www.taxarm.co.uk/wp-content/uploads/2021/06/Main-Blue@3x.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 213px; /* 02 */
    height:90px; /* 02 */
  }
  
  .site:before {
    top: 0;
    transform: rotate(-90deg) translate(-87%, 0); /* 03 */
  }

  .site:after {
    bottom: 6em;
    transform: rotate(-90deg) translate(36%, 0); /* 03 */
  }
}

You would need to remove the custom CSS block if you want to remove the logo from your site.

Kindly let us know if this has worked out for you.

Hello Ruenel,
Thanks for your support. It worked perfectly.

We’re always glad to help @ASIDCam.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.