• Resolved floo08

    (@floo08)


    Hi there,
    I’ve a big question. I think it isn’t possible, but i will ask:

    I use your child theme “Mantle”. And in every category and the front page, there is the article report.

    Headline
    Picute
    Extract of the article

    Is there a way to change it ?
    I would prefer it, when the picture is more tiny and on the left side, and on the right side there is the headline with the extract. I think on mobile phones it will look much better because one article isn’t as big as now.
    Hope for an answer and sorry for my english
    Florian

Viewing 15 replies - 1 through 15 (of 21 total)
  • Thread Starter floo08

    (@floo08)

    I hope you know what I mean.

    Thread Starter floo08

    (@floo08)

    Oh, i solve the problem. I bought the Generate Blog add-on a few weeks ago and with the add-on, it work.
    But I’ve to another questions.
    1. Am I allowed to replace your copyright in the footer with my own ?
    2. I want another font size for the headlines in the article report. How can I change the size ? I don’t want to change the size of the article, only of the headlines in the article report.
    Thanks

    Thread Starter floo08

    (@floo08)

    3. I don’t want to see the excerpt in the article report, but I don’t want to delete it in every article. Is there a way, that I only see the picture, the date and the headline without a text ? Thanks

    Thread Starter floo08

    (@floo08)

    Oh I’ve saw, that the new alignment work on computers, but I want that the new alignment also work on mobile phones. How can I add this ? Sorry for so many questions.

    Theme Author Tom

    (@edge22)

    Hi there,

    1. Absolutely, this might help: https://generatepress.com/knowledgebase/changing-the-copyright/

    2. If you have our Typography add-on, you can change the article title size in “Customize > Typography > Content Typography” (H2 size). Otherwise you can use CSS.

    3. You could try some CSS like this:

    .blog .entry-summary,
    .archive .entry-summary {
        display: none;
    }

    Adding CSS: https://generatepress.com/knowledgebase/adding-css/

    4. This CSS might help:

    @media (max-width: 768px) {
        .post-image-aligned-right .post-image {
            margin-left: 20px !important;
            float: right !important;
        }
        .post-image-aligned-left .post-image {
            margin-right: 20px !important;
            float: left !important;
        }
    }

    Hope this helps ??

    Thread Starter floo08

    (@floo08)

    1. Perfect, it works
    2. I want to use CSS, can you send me a code ?
    3./4. It don’t work, sorry. I add it to the css of “Mantle” but it do not work

    Sorry for getting on your nervs but I hope that you have another idea! Thanks!

    Thread Starter floo08

    (@floo08)

    Thread Starter floo08

    (@floo08)

    I would be very very happy if you can solve my problem today, because then I can buy your Menu Plus add-on
    Thanks

    Theme Author Tom

    (@edge22)

    2. You can do something like this:

    h2.entry-title {
        font-size: 30px;
    }

    3/4. Don’t add CSS into Mantle, add it using these instructions: https://generatepress.com/knowledgebase/adding-css/

    If that doesn’t work, can you link me to the page?

    Thread Starter floo08

    (@floo08)

    I install the plugin and add the code

    @media (max-width: 768px) {
        .post-image-aligned-right .post-image {
            margin-left: 20px !important;
            float: right !important;
        }
        .post-image-aligned-left .post-image {
            margin-right: 20px !important;
            float: left !important;
        }
    }

    but I saw the same thing on my mobile than before.
    Another idea ?

    Theme Author Tom

    (@edge22)

    Can you link me to the site?

    Thread Starter floo08

    (@floo08)

    IT-Antwort.de
    But I want it only on mobile phones.
    Thank you!
    This feature is very very important for me. When you want I will pay for the feature, but I NEED it. Thank you!

    Theme Author Tom

    (@edge22)

    Ah, the issue here is your title is too long and the image is too big to float with such little space.

    Your only option is to do something like this:

    @media (max-width: 500px) {
        .post-image img {
            max-width: 50px;
        }
    }
    Thread Starter floo08

    (@floo08)

    But is my wish possible, when i change the size of the title and the size of the image ?
    Is there any other chance ?

    Theme Author Tom

    (@edge22)

    I’m not sure what you mean?

    You can change the size of the title on mobile with our Typography add-on, or this CSS:

    @media (max-width: 768px) {
        h2.entry-title {
            font-size: 20px;
        }
    }
Viewing 15 replies - 1 through 15 (of 21 total)
  • The topic ‘article report’ is closed to new replies.