A Few More Traffica Issues

Discussion in 'Traffica WordPress Theme' started by davideld, Sep 14, 2013.

  1. davideld

    davideld New Member

    Joined:
    Jun 13, 2013
    Messages:
    21
    Likes Received:
    0
    Thanks for sorting out the menu items in my last Thread.

    I have a couple of other styling questions for this Theme:

    1) How do I change the "red" colour in the styling options of the Theme to my own custom colour the same red as in our Logo?

    2)The Widgets in the Footer of the Home Page look unevenly spaced, particularly the fourth one, is there a way to make them more even?

    3)How do I make the circle size bigger in the four Feature Images?

    4)How can I change the Header image on all of the Pages?

    5)Is there a way to not have a page name on each page, as it seems repetitive to have the page name repeated three times on top of the page:

    Screen Shot.jpg Screen Shot.jpg

    6) Finally how do I access the "Test Widget" to edit it? I want to use the grey background for my test widgets.

    Thanks for all of this.
    davideld
     
  2. Gourav

    Gourav Support Staff

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

    1.For your first issue

    Go to css > color > red.css present in your theme directory and follow the instruction as shown in image given below

    2013-09-14_1619.png


    Also check the link for reference
    http://www.inkthemes.com/how-to-edit-internal-files-through-ftp/07/

    2.For your second issue

    Can you please explain your problem with the help of screenshot, what you want to do and also share the link of your website, so that we can give you the exact solution.

    3.For your third issue

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

    Code:
    .feature_inner_box img {
    width: 176px;
    height: 176px;
    margin-bottom: 25px;
    border-radius: 97px;
    -moz-border-radius: 97px;
    -webkit-border-radius: 97px;
    -khtml-border-radius: 97px;
    }
    Adjust its value as per your requirements.

    4.For your fourth issue

    Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.
    5.For your fifth issue
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    #crumbs {
    display: none;
    }
    .page-title {
    display: none;
    }
    
    6.For your sixth issue

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

    Code:
    .textwidget {
    background: grey;
    }
     

Share This Page