Questions about fonts etc.

Discussion in 'Harrington- A WordPress Business Theme.' started by niallg, Oct 2, 2014.

  1. niallg

    niallg Member

    Joined:
    Sep 18, 2014
    Messages:
    95
    Likes Received:
    3
    I love your themes, I will probably become a nuisance with all my questions :
    1. How do I change the Colour of Theme Style sheet to a particular shade of red ?
    2. How do I edit text on slider ie the floating text and the heading etc.?
    3. How do I change font on whole theme ?
    4. Change font ,colour and size in : Home Page Feature section, Home page main and sub heading, and slider settings, Client testimonials section?
    5. Is it possible to put a video in slider section ?
    6. when I place images in the page area , the size increases to maximum bigger that the original size ? In particular in concert notes pages ?

    the URL of my site is : www.northsydneysymphony.com/blog/
    Thanking you for all your assistance with the slice theme
    Regards
    Niall
     
  2. Krish

    Krish Support Staff

    Joined:
    Oct 22, 2012
    Messages:
    210
    Likes Received:
    1
    Location:
    India
    Hello Niallg,

    Thanks for liking our themes.

    1. To change theme color, follow the attached image theme-color.png
    2. To edit slider heading text, follow the attached image slider-heading.png
    3. To change font on whole theme is, there is no option added for doing this. If you are familiar with stylesheet, I just give you the hint, where you can make your changes. Just see the attached image fonts.png
    4. * For feature section, use following code in custom css option on theme options:
    Code:
    .feature_inner_box h6 a,
    .feature_inner_box p {
        color: your color value;
        font-size: your size value;
    }
    * For home page main heading:
    Code:
    .home_container .page_info h1 {
    color:your color value (eg:#000000);
    font-size: your size value (eg:12px);
    }
    * For home page sub heading:
    Code:
    .home_container .page_info p {
    color:your color value (eg:#000000);
    font-size: your size value (eg:12px);
    }
    * For slider title:
    Code:
    .sy-caption-wrap .sy-caption h1{
        color:your color value (eg:#000000);
        font-size: your size value (eg:12px);
    }
    * For testimonial section
    Code:
    .bx-wrapper .bx-viewport ul li p {
        font-size: your size value (eg:12px);
    }
    5. Yes it is possible to put video on slider section.
    6. This is theme bug, I will notice this to fix on current theme and provide you on members area.
     

    Attached Files:

  3. niallg

    niallg Member

    Joined:
    Sep 18, 2014
    Messages:
    95
    Likes Received:
    3
    Re- changing theme colour I want to change from the red that is in the dropdown menu (#EA3131) on theme style sheet to #C4272E (RED)which is a different shade.

    Thanks
     
  4. niallg

    niallg Member

    Joined:
    Sep 18, 2014
    Messages:
    95
    Likes Received:
    3
  5. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Use this code for image.
    Code:
    .fullwidth img {
    max-width: 100%;
    height: auto;
    }
    For menu color
    Goto
    Appearance->theme editor-> style.css
    Find all CSS start with { #menu } and in this code find the color you want to replace and change it. after replacing all color code update file.

    Thanks & Regards
    Pramod
     
  6. niallg

    niallg Member

    Joined:
    Sep 18, 2014
    Messages:
    95
    Likes Received:
    3
    Hi Pramod,

    re- the images, pasted the code in and it is still the same. I notice in the threads that other people have the same problem.
    Please fix as I need to have this site running soon.

    Regards
    Niall
     
  7. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .fullwidth img {
    width: auto;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     

Share This Page