Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #34382
    philippe
    Member

    Hello,

    Your theme has options intéressante.Mais I have 3 questions:
    1 Question, how is it possible to script advertising exp: Leaderboard: 728 x 90) at the top right of the header logo

    Question 2, how to reduce the size of excerpts from articles? I know that we can reduce the number of line but the overall size of presentation of new items?

    Question 3, how to remove the light gray contour that is in the page, around the slider, sidebar sidebar around excerpts from recent articles …

    thank you
    cordially
    Philippe

    #34498
    Sakin
    Keymaster

    Hello Philippe,

    1. For Header right advertisement, you need to upgrade to Catch Box Pro theme and then you will get Header Right Sidebar and then you can add Advertisement widget in Header Right Sidebar from “Appearance => Widgets”.

    2. You can reduce the word count of the excerpt from “Appearance => Theme Options” and change the Excerpt Length in Words.

    3. You can change the background color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box.
    #main { background-color: #eee; }

    Regards,
    Sakin

    #34556
    philippe
    Member

    Merci Sakin pour tes réponses.

    “You can reduce the word count of the excerpt from “Appearance => Theme Options” and change the Excerpt Length in Words.”

    I knew, but reduce the size of the whole extracts by moving the location of the photo.
    I put you the link of a site that you better understand my question to reduce the volume of abstracts of articles which take up much space (not very pretty for my taste)

    Here is the link for an idea of ​​size
    http://www.aufeminin.com/
    thank you

    #34648
    Sakin
    Keymaster

    @philippe: Not so sure about that. As this theme is not designed that way. But you can try adding in the following css in “Appearance => Theme Options => Custom CSS” box to make your thumbnail image to the right of the excerpt content.

    .entry-summary .wp-post-image {
        display: inline;
        float: right;
        width: 30%;
    }
    #34728
    philippe
    Member

    Bonjour Sakin,

    Merci, c’est ok pour la réduction des extraits d’articles, sa fonctionne.
    J’ai choisie de placer l’image à gauche.

    Comment éloigner un peu le texte de l’image ?

    Merci
    Philippe
    mon site

    #34801
    Sakin
    Keymaster

    @philippe: I am not sure what you mean. If you want to make your image to the left the please replace previous css that I gave you with the following:

    .entry-summary .wp-post-image {
        display: inline;
        float: left;
        width: 30%;
    }

    And to decrease the words count in your excerpt content. You need to go to “Appearance => Theme Options”, change the word count in “Excerpt Length in Words” and then “Save Changes”

    #34953
    philippe
    Member

    Hello,

    Thank you, it’s ok for the image on the left but the text is too against the picture!
    Commits push a little of the image?
    Look at the site:

    Another question:

    How to change the color of the top bar menu which is dark gray?

    thank you

    #35001
    Sakin
    Keymaster

    @philippe: Ok then you can replace the previous css with the following, in the following css I have added margin-right: 15px to make it space after the image.

    .entry-summary .wp-post-image {
        display: inline;
        float: left;
        margin-right: 15px;
        width: 30%;
    }

    That color options are there in Catch Box Pro theme, there you can change the menu color from “Appearance => Theme Options => Color Options”.

    In free theme, you need to work in manually by changing the color in the following css and add it in “Appearance => Theme Options => Custom CSS” box.

    #branding #access {
        background: none #585858;
    }
    #35076
    philippe
    Member

    Thank you very much.
    Philippe

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘questions about the structure of the theme’ is closed to new replies.