Change heading font style and weight

Discussion in 'Dzonia WordPress Theme' started by sgsherman, May 1, 2013.

  1. sgsherman

    sgsherman New Member

    Joined:
    Apr 17, 2013
    Messages:
    10
    Likes Received:
    0
    I would like to change all of the header fonts to a san serif bold font.
     
  2. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Hello,

    First of all you have to remove cufon from theme so open "function.php" file and change the name of the file as shown in the image.

    http://screencast.com/t/tiy1cijdCK

    And then put the following code in custom css
    Appearance -> theme options -> styling options -> custom css

    Code:
    h1, h2, h3, h4, h5, h6 {
    font-family : symbol;
    }
    This will solve your problem.
     
  3. sgsherman

    sgsherman New Member

    Joined:
    Apr 17, 2013
    Messages:
    10
    Likes Received:
    0
    Thank you thank worked great. I would like to change the body background color. I added the following code:

    .body_wrapper{
    background:#F1F8E0;
    }

    There is still a white area on the top of the page and a white area under the sliders. Is there a way to remove these white areas? My website link is www.solelybydesign.com/dir/
     
  4. sgsherman

    sgsherman New Member

    Joined:
    Apr 17, 2013
    Messages:
    10
    Likes Received:
    0
    I removed the coding because my client wanted to review the site. Is there a way to make the entire page a different color without having the white areas?
     
  5. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    For top image Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .body_wrapper {
    background: #F1F8E0;
    border-radius: 11px;}
    .top_cornor {
    background: none;}
    
    And for image below slider.
    Go to the
    Theme directory > images and change the color of (slider-pag.png) with the help of Photoshop or any other image editing tool.
     
  6. sgsherman

    sgsherman New Member

    Joined:
    Apr 17, 2013
    Messages:
    10
    Likes Received:
    0
    Thanks!

    How do I change the font color and size of the "READ MORE" links in the Home Page First Featured Section?

    Can you send me an email about disabling the mobile responsiveness of the site please.
     
  7. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .featured_content .column-three .inner_area .read_more{
    color:red;
    }
    Inplace of "red" put your color code.
     

Share This Page