• Theme Author mythemes

    (@mythemes)


    This theme comes with special option. This option allow add custom css to customize your web site to your needs.

    To use it go to Admin Dashboard
    Appearance > Theme Options – section “Others..” field “Add custom css”.

    You can use it for multiple case, just is need to add you css in this field.

    EXAMPLES

    Increase font size:

    body, html{
    font-size: 14px;
    }

    Chage Single Post Title color

    body.single.single-post article h1.post-title{
    color: #999999;
    }

    Hide Autor, Date and Comments from single post

    body.single.single-post article div.meta{
    display: none;
    }

    Hide Categories and Tags from single post ( after content )

    body.single.single-post article div.post-meta-terms{
    display: none;
    }

    Change Widgets title color

    body div.widget h4.widget-title{
    color: #ffffff;
    }

    Change Widgets link color ( categories, Archiv, Custom Menu, Pages and others displaed in list )

    body div.widget ul li a{
    color: #dedede;
    }
    
    body div.widget ul li a:hover{
    color: #ffffff;
    }

    Aand more other, if you know a little CSS and HTML you can customize almost all items.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Memoman

    (@memoman)

    Hey, I’ve been using your theme, and I’d like to make the post’s content font bigger. Using:

    body, html{
    font-size: 14px;
    }

    Makes everything bigger, except for the post’s content. You know any other quick custom css tricks to do that? Thanks for your time and theme.

    Site

    Theme Author mythemes

    (@mythemes)

    try this code:

    .content-border .hentry p,
    .content-border article p{
    font-size: 14px;
    line-height: 24px;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Custom CSS and Customizations’ is closed to new replies.