Social Icon Modification & Blog Year

Discussion in 'BizWay WordPress Theme' started by lkodsmann, Jun 24, 2014.

  1. lkodsmann

    lkodsmann Guest

    Joined:
    Apr 4, 2014
    Messages:
    92
    Likes Received:
    2
    Just a couple of modifications - are any of these possible?

    1. Social Links at the bottom of the page
      • Is there any way to make these icons larger? They seem awfully small.
    2. Adding Social Links to the top of the page
      • Is it possible to also include the social links in the nav bar (in place of the search)?
      • If not, is it possible to also include the social links in the header, below the logo?
    3. Blog Date
      • Is it possible to also include the year in the date? Right now, I only see the month and day, I would like to also include the year.
    Thank you for your help!
     
  2. Piyush

    Piyush Support Staff

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

    1. For social icons,
    paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .tt-wrapper li a {
    width: 30px;
    height: 30px;
    background-size: 100% ! important;
    } 
    Adjust the above values as per your requirement.

    2. Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.

    3. Go to the blog.php file present in your theme directory and paste the code given below in that file as shown in the image given below.
    Code:
    <li class="year"><?php echo get_the_time('y') ?></li> 
    [​IMG]

    Similarly, do the same in the single.php file present in your theme directory.

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

    Code:
    .content-bar .post .date li {
    font-size: 11px;
    }
    .content-bar .post .date li.month {
    font-size: 16px;
    } 
    You can adjust the value of "font-size" as per your requirement.
    This will solve your issue.
     
  3. lkodsmann

    lkodsmann Guest

    Joined:
    Apr 4, 2014
    Messages:
    92
    Likes Received:
    2
    Thanks - the social icon CSS worked perfectly!

    The second fix (for adding the blog year) worked perfectly on individual blog posts, but not on the overall blog page (where all recent posts are displayed)?
     
  4. Gourav

    Gourav Support Staff

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

    Could you please explain your problem with the help of screenshot, about which area you are talking and also share the link of your website, so that we can give you the exact solution.

    Thanks & Regards
    Gourav Shrivastava
     

Share This Page