Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #52564
    Isabel
    Participant

    Hello! My site-> http://www.ladypingu.com/

    I’m sorry for bothering you again, but I have three questions, First: I’ve tried to translate the theme without results.
    I downloaded the archive .po from wp-content > themes > full-frame-pro > languages. And I edited a few terms with Poedit software, but I can’t find the part that says “leave a comment” or “previus post” even using ctrl + F. But I’ve changed Color options to “Opciones de color” and it worked.

    Second question: Where can I change the width of the white background in the whole posts? -> http://www.ladypingu.com/customizacion-de-munecas-que-es/
    I’m not able to find the full html of the site.

    Third question: Can I change the background of the right sidebar with some opacity?

    May you help me with those three questions please?

    #52567
    Isabel
    Participant

    And now I have another problem… why if I had selected a background image, the image doesn’t shows?

    background image

    #52574
    Sakin
    Keymaster

    @Isabel:
    1. Are you translating to Spanish. For that you need to create es_ES.po and es_ES.mo file from catch-flames.pot file using Poedit software. I am confused we don’t have “leave a comment”, it should be as “Leave a reply” and also we don’t have “previus post”, it should be as “Older posts”. If you want, we can work together in this translation so that we will have it in core theme in next update. I will email you.

    2. Which width are you talking about. I am bit confused. It’s already large enough as per the design.

    3. For background color with opacity you need to use RGBA color. So, can per your color, it will be as below. You can add the following css in “Appearance => Theme Options => Custom CSS” box, where 164, 188, 175 is rgba color code and 0.6 means 60% opacity.
    .sidebar-primary, .sidebar-secondary {
    background-color: #a4bcaf;
    background: rgba(164, 188, 175, 0.6);
    }

    4. Your background image is not showing as you have added grey background for your content.

    #52576
    Isabel
    Participant

    For the first question, I’ll work on in after university!

    For the second question I’m talking about the white background in the homepage 🙂 sorry for the misundrestanding.

    For the third: Thanks!

    And I have another question, look here-> http://www.ladypingu.com/portfolio/witchcraft/
    How can I add some color to that background so the text can be read keeping the background with flowers as is shown in the homepage?

    You’re helping me a lot thanks!

    #52627
    Sakin
    Keymaster

    @Isabel: For 2nd question, the content area is already 900px width. So, we don’t recommend it making it bigger then this. It’s not good for readability. You can see the following css that you can play with for screen size above 1366px.

    @media screen and (min-width: 1367px) {
    #content .wrapper { width: 1280px; }
    #main { width: 900px; }
    .sidebar-primary { width: 340px; }
    }

    Looks like you have customize that single post template as there is no div id main. Instead you have new id rx_content. So, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #rx_content { background-color: #f2f2f2; }

    #53131
    Isabel
    Participant

    @Sakin Thank you so much! I fixed it :3

    #53138
    Sakin
    Keymaster

    @Isabel: That’s nice

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Translate’ is closed to new replies.