change slider

Discussion in 'Themia WordPress Theme' started by maes39, Sep 19, 2014.

  1. maes39

    maes39 Member

    Joined:
    Jul 2, 2013
    Messages:
    123
    Likes Received:
    2
    Hello,

    On my website www.chrismaton.nl we want to change the color of the border from the slider.
    The CSS code i've used don't work.

    On the contact form (http://www.chrismaton.nl/?page_id=37) on the side there stand some ""widgets" (search / categories / archives) is it possible to delete theme ??

    On the background of the gallery page en normal page you see small lines, is there an way to delete the small lines??
     
  2. Yogesh

    Yogesh Guest

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

    1. To change slider border use following css code in Custom CSS with your desired color.
    Code:
    #main {
    border: none;
    background: your desired color;
    }
    2. To remove sidebar from contact page just delete this line ( <?php get_sidebar(); ?> ) from contact page as shown below in screenshot.

    20sep4.png

    3. To delete small white line from gallery page use following css code in Custom CSS.
    Code:
    .fullwidth {
    background: white;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  3. maes39

    maes39 Member

    Joined:
    Jul 2, 2013
    Messages:
    123
    Likes Received:
    2
    Thanks for the great help, i've got two small questions.

    Is there an code to change the color feature heading ??
    And is there an code to change the color from the title for each page??
     
  4. Yogesh

    Yogesh Guest

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

    To change color of feature heading use following css code in Custom CSS.
    Code:
    .feature_content h2 {
    color: your desired color;
    }
    To change heading color for each page use following css code in Custom CSS with your desired color.
    Code:
    .fullwidth h1 {
    color: your desired color;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     

Share This Page