Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #850027

    Nicholas
    Participant

    How do I add custom css to my blog page at http://retrofit.agency/nodaysadhesives/blog/ ?

    For instance, I want the default CSS sidebar settings applied to here (though I’ve got custom CSS applied to the sidebar elsewhere on the site).

    #850214

    John Ezra
    Member

    Hi there,

    Thanks for writing in! Regretfully, at this time I am not entirely certain what it is you would like to accomplish based on the information given in your post. If you wouldn’t mind providing us with a little more clarification on what it is you’re wanting to do (a link to a similar example site would be very helpful, or perhaps some screenshots), we’ll be happy to provide you with a response once we have a better understanding of the situation.

    Additionally, when trying to access your link, it is asking for a password. Please provide us with login credentials so we can take a closer look. To do this, you can make a post with the following info:

    – Link to your site
    – WordPress Admin username / password
    – FTP credentials

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    #851156

    Nicholas
    Participant

    I need to apply CSS to the blog page and there’s no apparent way to edit the blog via Cornerstone. Is there any way to apply custom CSS to elements on the designated BLOG page (in WP Admin reading settings) specifically?

    Credentials to follow.

    #851160

    Nicholas
    Participant
    This reply has been marked as private.
    #851173

    Nicholas
    Participant

    to be clear:

    #851616

    Rad
    Moderator

    Hi Nicholas,

    Editing the blog isn’t possible, it’s made that way and it’s WordPress standard. But you can always add your custom CSS to Admin > Appearance > Customizer > Custom > CSS

    And the main cause of your issue from the provided screenshot is this custom CSS.

    .x-main {
        width: 88%;
    }

    Please remove it.

    Thanks!

    #851623

    Nicholas
    Participant

    Right, but I want .x-main’s width at 88% on the pages that are currently using the sidebar (such as http://retrofit.agency/actaphase-60-2-col/)

    Is there any way of editing the blog template, or adding classes to the elements on this page specifically?

    #851838

    Rad
    Moderator

    Hi there,

    Sure, you can add this CSS replacing that one.

    .x-content-sidebar-active:not(.blog) .x-main {
        width: 88%;
    }

    Hope this helps.