More Inquiries

Discussion in 'Andrina WordPress Theme' started by ameliasdandd, Jan 28, 2014.

  1. ameliasdandd

    ameliasdandd New Member

    Joined:
    Oct 29, 2013
    Messages:
    8
    Likes Received:
    0
    Hi Thank you so much for answering all my other questions.

    I have new ones.

    1. Since I can not remove he slidershow text box, Can I make it smaller?

    2. How can I center align ALL the text? and if I can't how can I at least do so for the HomePage in the text box on the slide show and under the 4 text box.

    3. I was able to change me font but I need to make that new font bigger, How can I do so?

    4. On the sample page of Andrina I see that the gallery section is perfect but I am not able to set mine up this way, how can I do it? this is the link to the sample gallery page and would like mine to look the same in my portfolio page. http://inkthemes.com/wpthemes/andrinanonprofits/gallery/
     
  2. Piyush

    Piyush Support Staff

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

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

    Code:
    #slides .caption {
    width: 225px;
    height: auto;
    } 
    You can change the value of "width" as per your requirment.

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

    Code:
    #slides .caption h2 {
    text-align: center;
    }
    #slides .caption p{
    text-align: center;
    }
    .feature-content h1 {
    text-align: center;
    }
    .feature-content .feature-item h4 {
    text-align: center;
    }
    .feature-content .feature-item p{
    text-align: center;
    }
    .bottom-feature .bottom-feature-left h1{
    text-align: center;
    }
    .bottom-feature .bottom-feature-right h1{
    text-align: center;
    }
    .bottom-feature .bottom-feature-right .bottom-feature-right-wrapper p {
    text-align: center;
    } 
    3. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    p{
    font-size:30px ! important;
    }
    h1{
    font-size:30px ! important;
    }
    h2{
    font-size:28px! important;
    }
    h3{
    font-size:26px! important;
    }
    h4{
    font-size:24px! important;
    }
    span{
    font-size:30px! important;
    }
    div{
    font-size:30px! important;
    } 
    You can change the value of "font-size" as per your requirement.

    4. Follow the link given below for fourth issue.
    http://www.inkthemes.com/create-gallery-on-wordpress-with-no-image-repetition/03/

    This will solve your issue.
     

Share This Page