To insert code use <code>...</code>.
Symplex Theme - Changing Sidebar data
  • Hello, I am looking to change the following:

    1. sidebar title font style
    2. sidebar text font size (not the title)
    3. width between widgets

    Thank you for your help.
  • 1 Comment sorted by
  • You can add the css code below to do this change:

    /*this fragment is used for change the sidebar title font style*/
    h3.widgettitle{
    color:
    font-family:
    font-size:
    ……
    }

    /*this fragment is used for change the sidebar font-size*/
    #sidebar{
    font-size:12px;
    }
    /*this fragment is used for change width between widgets*/
    section.sidepanel {
    margin-bottom:20px;
    }