Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Asgaros

    (@asgaros)

    Hello Tommyfoxy2.

    By default the forum is using some kind of blue color (#2D89CC). If you want to change the color you should override it in your own theme CSS file because any plugin updates to Asgaros Forum will override the CSS file located in asgaros-forum/skin/style.css.

    You can put this code in your own theme CSS file if you want to use a darker color for example:

    #af-wrapper a span {
    	color: #fff !important;
    }
    #af-wrapper a,
    #af-wrapper .breadcrumbs a:hover,
    .icon-files-empty-small-yes:before,
    .icon-normal_closed-yes:before,
    .icon-sticky_closed-yes:before,
    .icon-normal_open-yes:before,
    .icon-sticky_open-yes:before,
    .icon-overview-yes:before,
    .icon-link:before {
    	color: #49617D !important;
    }
    #af-wrapper th,
    #af-wrapper input[type="submit"],
    #af-wrapper .forummenu a,
    #af-wrapper .pages a,
    #af-wrapper .title-element {
        background-color: #49617D !important;
    }
    #af-wrapper .content-element {
        border: 1px solid #49617D !important;
    }

    Feel free to change #49617D to another color of your choice! ??

    Thread Starter Tommyfoxy2

    (@tommyfoxy2)

    Thanks so much it worked!

    Plugin Author Asgaros

    (@asgaros)

    I had to make some small changes to the style.css to fix issues with some default WordPress themes. So please make sure to change your customizations in your theme CSS to something like this:

    #af-wrapper a,
    #af-wrapper .breadcrumbs a:hover,
    .icon-files-empty-small-yes:before,
    .icon-normal_closed-yes:before,
    .icon-sticky_closed-yes:before,
    .icon-normal_open-yes:before,
    .icon-sticky_open-yes:before,
    .icon-overview-yes:before,
    .icon-link:before {
    	color: #49617D !important;
    }
    #af-wrapper input[type="submit"],
    #af-wrapper .forum-menu a,
    #af-wrapper .pages a,
    #af-wrapper .title-element {
        background-color: #49617D !important;
    }
    #af-wrapper .content-element {
        border: 1px solid #49617D !important;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change Forum Color’ is closed to new replies.