Okay
  Public Ticket #3804194
Blog settings
Open

Comments

  •  6
    lukacsdaniel1 started the conversation

    Hi,

    I would like to make a blog, but I see, the logo  overlap with the blog.

    And how can I change from the white background to transparent?

    Thanks,

    Daniel

    Attached files:  blog.PNG

  •  3,028
    Andrew replied

    Hi there,

    Thanks for writing to us.

    To make the changes as requested, you will need to add some custom CSS code. To do this, please follow these steps:

    From your WordPress dashboard, Navigate to Salient > General Settings > CSS/Script Related. In the custom code area, insert the provided CSS snippet:

    @media only screen and (min-width: 1000px) {
        .blog .container.main-content {
            padding: 50px 100px 0;
        }
    }

    Once the code is added, save and refresh the page to see if the change has been applied. In case it helps, please check this section from the documentation on CSS/Script Related. If this does not work as expected or If you have any further questions or need additional assistance, don't hesitate to write back, I'm happy to help. 

    Regards,

  •  6
    lukacsdaniel1 replied

    Hi again,

    and how can I turn off the white background and add a transparent background on blog? 

  •  8,996
    Tahir replied

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .blog-recent[data-style*=classic_enhanced] .article-content-wrap, .masonry.classic_enhanced .masonry-blog-item .article-content-wrap {
        background: #fffef3 !important;
    }

    Thanks


    ThemeNectar Support Team