Okay
  Public Ticket #1672279
Blog Sidebar customisation
Closed

Comments

  • dyplwp2018 started the conversation

    Hi Guys,

    Work in progress so no URL.

    I have looked up previous similar replies but they are quite old and want to be sure before dropping any css.

    1. Is it possible to increase the width of the blog sidebar?

    2. Salient pulls the font colour for the sidebar from the chosen accent colour, is it possible to edit/change this?

    Appreciated,

    Neil


  •  3,030
    Andrew replied

    Hi Neil,

    Those adjustments can be made with some CSS.

    Could we have a link to the page we try and do the changes from that specific page to make sure the CSS we give you works.

    Thanks.

  • dyplwp2018 replied

    Thanks Andrew, its in stage so no URL at this time.


  •  3,030
    Andrew replied

    Hi Neil,

    1) The sidebar width on blog pages, could you try the following CSS:

    @media (min-width: 690px){
    .post-area.span_9 {
        width: 60%;
    }
    #sidebar{
      width:38%;
    }
    }
    

    add it to salient \ general settings - css script related - custom css code.

    You can adjust it to what you need.

    2) As for the font color you can try this CSS:

    #sidebar .widget a{
      color:red;
    }
    

    you can change the red to the color you want.

    Hope this helps.