Lawyer - footer, logo

I want to remove the vertical logo from the menu and footer. I go to X -> Options -> CSS and it’s empty there. How can I edit this item? I want the logo to be classic, horizontal, edited from Theme options, not from css.

The second problem I have with the footer. In Global blocks, footer looks fine. But when I go to the site it looks different. I don’t have a cache plugin.


Hello Szymon,

Thanks for writing in!

The logo for the Law site demo were added in the custom css. It should be there like this code:

/*
// (min-width: 1340px)
// -------------------
// 01. Background logo positioning for very large screens.
// 02. Dimensions should match logo used in Theme Options. Original logo
//     is 214x48 but halved for retina display support.
// 03. Logo is rotated and then translate value should be adjusted to suit.
*/

@media (min-width: 1441px) { /* 01 */
  .site:before,
  .site:after {
    content: "";
    display: block;
    position: absolute;
    background-image: url(http://x.support/wp-content/uploads/2020/02/logo.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 107px; /* 02 */
    height: 24px; /* 02 */
  }
  
  .site:before {
    top: 0;
    transform: rotate(-90deg) translate(-87%, 0); /* 03 */
  }

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

If you cannot find it, kindly provide us access to your site so that we can check your settings. Please create a secure note with the following info:
– Link to your site
– WordPress Admin username / password

To know how to create a secure note, please check this out: https://theme.co/docs/getting-support

Regards.

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