Axon Theme CSS Customization

  • Unknown's avatar

    Hello everyone,

    I need some help with customizing my site. I have done a little bit but there seems to be two changes I haven’t been able to change.

    I need some help on a CSS code to change the color of my side bar and top navigation bar. I know the color to use just not the code.

    my url is http://www.blackoakdist.wordpress.com
    Can anyone help me out?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Try this out and let me know if it works for you:

    .widget {
      background-color:#f00;
      border:none;
    }
    
    .sitebar-inside {
      background-color:#0f0;
    }
  • Unknown's avatar

    That worked! thank you! looks like I was missing the colon after color.

    I found another Item that I would like to change the color of is the drop down navigation. is there a simular CSS for that?

  • Unknown's avatar

    Here’s how to change the colour of your drop-down menu backgrounds, and as a bonus I’ve also included the code to remove the borders which were looking a bit odd:

    .sf-menu ul.sub-menu li {
      background-color:#00f;
    }
    
    .sf-menu ul.sub-menu a {
      border:none;
    }
    
    .sf-menu a, .sf-menu a:visited {
      border:none;
    }
  • Unknown's avatar

    Thank you very much!

  • The topic ‘Axon Theme CSS Customization’ is closed to new replies.