[Resolved] Как перенести метки и комментарии вправо?

Home Forums Support [Resolved] Как перенести метки и комментарии вправо?

Home Forums Support Как перенести метки и комментарии вправо?

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #248163
    Нина

    Спасибо Том Вам за ответы на все мои вопросы. Обращаюсь уже много раз.
    Сейчас у меня снова возник вопрос: как перенести вот это слева направо: http://prntscr.com/dcb54i

    #248333
    Tom
    Lead Developer
    Lead Developer

    You could try some CSS like this:

    footer.entry-meta {
        text-align: right;
    }
    #248475
    Нина

    Не совсем то, а как отделить: комментарии от папки названия рубрики, чтобы число комментарии было справа, а название папки рубрики осталось слева?

    #248513
    Tom
    Lead Developer
    Lead Developer

    Any chance you can link me to your site so I can see how it looks right now?

    #248533
    Нина

    http://www.test.blog-travuscka.ru/
    Сейчас это вот как выглядит: http://prntscr.com/dcmquk
    А надо вот так: http://prntscr.com/dcmr7t
    Как разделить наименование рубрик от комментарий?

    #248555
    Tom
    Lead Developer
    Lead Developer

    Hmm that would involve quite a bit of custom programming I’m afraid – a little too much to provide in here.

    I can get you started with something like this:

    .cat-links, 
    .comments-link {
        display: inline;
    }
    
    .cat-links:before, 
    .comments-link:before {
        display: none;
    }
    
    .cat-links a, 
    .comments-link a {
        background: red;
        color: #FFF !important;
        padding: 5px;
    }
    
    .comments-link a {
        background: green;
    }

    You’ll need to take it from there 🙂

    #248635
    Нина

    Снова не так получается: http://prntscr.com/dcr3ir
    Нам надо название рубрики перенести налево, а цвета можно не менять.

    #248813
    Tom
    Lead Developer
    Lead Developer

    Removing the CSS I gave you moving it to the right will move it back to the left:

    footer.entry-meta {
        text-align: right;
    }

    You’ll need to update the color values in the CSS I gave you (red, green) with your preferred colors.

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.