Color follow button y others

  • Hello good afternoon, I have an apr of doubts.

    First, I need to change the color button to follow, which comes out as orange by default.

    Second, I need to change the name that comes out of the categories, which is in English “category” and below the actual name of the category.

    Third, I need to change the color of a category that I added within a page in the menu.

    Regards

    The blog I need help with is: (visible only to logged in users)

  • Hello again, is there a possibility to change the header size for mobile devices? that on the cell phone looks quite small, greetings.

  • Hi there – thanks for the message.

    You can change the follow button colour with some custom css:

    a.contributor-posts-link, a.button, button, .reply a, input[type=submit] {
        background-color: #333333;
    }

    There’s info on using custom css here:

    https://wordpress.com/support/custom-design/custom-css/

    You can make the category title larger and not under the ‘category:’ text with:

    .page-title span {
    font-size: 1em;
    display: inline;
    }

    I’m surprised the category text isn’t already translated to Spanish. I would suggest asking the WordPress.com support people about that (I do theme support but am not a WordPress.com employee and can’t help with translations).

    I’ve checked the translations (which anyone with a WordPress.com account can do) and it seems the prefix has been translated but not approved:
    https://translate.wordpress.com/projects/wpcom/es/default/?filters%5Btranslated%5D=yes&filters%5Bstatus%5D=waiting

    So hopefully once someone approves it your site will update. If you tell the support people this then they might be able to get someone to make the changes.

    Third, I need to change the color of a category that I added within a page in the menu.

    What exactly do you want to do?

    is there a possibility to change the header size for mobile devices? that on the cell phone looks quite small, greetings.

    We can probably change this with css. Which headers do you mean?

    Thanks – Ben

  • 1. I mean the header image, which from the computer looks good, but from the mobile it looks somewhat small

    2. Is there any chance that the category will be seen in the homepage entries that are initially displayed?

  • 1. I mean the header image, which from the computer looks good, but from the mobile it looks somewhat small

    Ah ha – I see now. The problem is the white borders on the image. If you ignore the default crop settings and crop the image so that there’s a much smaller white border on the left and right and then use the following custom css it should fill the space better.

    a.header-image img {
        max-width: 800px;
        width: 100%;
        object-fit: contain;    
        height: 80px;
    }

    2. Is there any chance that the category will be seen in the homepage entries that are initially displayed?

    There’s no way to display the category on the homepage entries I’m afraid.

  • The topic ‘Color follow button y others’ is closed to new replies.