Pages title color/type and alliegnment

Discussion in 'BizWay WordPress Theme' started by bigtflyer, Jan 20, 2014.

  1. bigtflyer

    bigtflyer New Member

    Joined:
    Jan 19, 2014
    Messages:
    29
    Likes Received:
    0
    Hello!

    On my pages (seperate from my home page) is there a way to adjust the page titles:

    1. Background color
    2. Type size and font
    3. Allienment

    My website is damageawayusa.com/wordpress
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .page-heading h1 {
    font-family: symbol;
    color: red;
    font-size: 20px;
    text-align: center;
    }
    .page-heading-container {
    background: grey;
    } 
    In place of "symbol" you can put your font.
    In place of "red" and "grey" you can put your color or color code.
    You can also change the value of font-size as per your requirement.
    This will solve your issue.
     

Share This Page