• Resolved cel1189

    (@cel1189)


    Hello,

    I figured out how to make my sidebar appear on the left, now im just wondering how to change font colour/size/font family etc

    also is there any way to remove the little folder icons?

    Thanks

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter cel1189

    (@cel1189)

    hannah

    (@hannahritner)

    Hi,
    You sidebar titles pull from your h3 settings. But you can change only for the sidebar with this css:

    .sidebar h3 {
    color: #fff;
    font-family: sans-serif;
    font-size: 18px;
    }

    And the link text with this:

    .sidebar a {
      color: #fff;
      font-size: 13px;
      font-family: sans-serif;
    }

    You can remove the folder icons with this:

    .sidebar .product-categories .cat-item a:after {
    display: none;
    }

    Hope that helps!

    Hannah

    Hey, You can add this:

    #content .main {
      float: right;
    }

    That will break the site on mobile…

    Change to this:

    @media (min-width: 992px) {
    body .main.col-lg-9 {float:right;}
    }

    Kadence Themes

    Thread Starter cel1189

    (@cel1189)

    Hi thanks,

    I tried the code snippets out and they worked great, im just trying to figure out how to remove the faint underlining now and add a bit of padding to make the sidebar title sit right a touch more.

    Thanks for all the help so far any more you be appreciated!

    hannah

    (@hannahritner)

    This should work:

    .sidebar .product-categories li a, .product-categories li a {
      border-bottom: 0;
    }
    .sidebar h3 {
      padding-left: 5px;
    }

    Hannah

    Thread Starter cel1189

    (@cel1189)

    Hey again,

    That worked great and removed the underlining, thanks again!

    Hiya,

    I have tried using the code to remove the folder icon in my child theme editor, a custom css plugin and in edit css – it hasn’t worked in any of them!

    Where should I be entering the code?

    I am using the storefront theme.

    Thanks

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Sidebar styling’ is closed to new replies.