• Resolved allysoon

    (@allysoon)


    Hello,

    I have some questions and if you can help me I will pleased.

    This is my website: https://www.sinemakritikleri.com.

    1- I would like to change read more with something different.
    2- I would like to replace older posts with numbers
    3- I would like to change the color of the titles because they are not seen.

    I have no idea how to do them, so if you can help me with my questions I am going to donate some money to your work and hopefully help you get further with your knowledge.

    Thank you

Viewing 9 replies - 1 through 9 (of 9 total)
  • No need for donation
    In your child theme open the style.css file and search for:

    .post-title a {
        padding: 0px;
    }

    Replace it with:

    .post-title a {
        padding: 0px;
        color: #000;
    }

    That will give your titles a black color

    Changing the ‘Read More’ text depends on which file your theme uses for that porpoise, you can do a search through all your theme files for the word ‘Read More’, copy the hole line and past it here
    It should be something like this
    the_content(‘Read More…

    Theme Author Guido

    (@guido07111975)

    Hi,

    I notice you’ve switched theme?

    Guido

    Thread Starter allysoon

    (@allysoon)

    Hi Guido,

    Actually I haven’t. I am still using the Multicolors theme. I have just made some modifications. Since you are here. If I may ask your help?

    As my main page, I am using my latest posts that’s why the theme doesn’t allow me to put a widget on the right sidebar. Can this be resolved?

    Thank you

    Theme Author Guido

    (@guido07111975)

    Hi,

    You want a sidebar right next to the posts on homepage?

    Open file index and look for:

    <div id="content-full">

    Change that into:

    <div id="content">

    Look for:

    </div>
    </div>
    </div>
    <?php get_footer(); ?>

    Cnange that into:

    </div>
    <?php get_sidebar(); ?>
    </div>
    </div>
    <?php get_footer(); ?>

    I advice you to use a child theme for this otherwise you loose modifications at next theme update.

    Guido

    Thread Starter allysoon

    (@allysoon)

    Hello Guide,

    Thanks for the code. It actually worked but unfortunately, the widget is still not entering in the right side. It remains a little up top.

    or

    As you see there 2 posts in each line. Is there a code so it can show 3 posts and not 2

    Thank you

    Theme Author Guido

    (@guido07111975)

    Hi,

    When I take a look at your website (did not recognize my theme before) I notice a search bar on right side. It seems you’ve hardcoded this. This is not the sidebar and in source code I neither see the code I gave you.

    Guido

    Thread Starter allysoon

    (@allysoon)

    Hello,

    I have added a code for search somewhere in CSS and I don’t even remember where. Earlier I have tried your code, it worked but as I said it wasn’t fitting exactly on the right side.

    I guess I messed up the theme. Anyway thanks for your help

    Theme Author Guido

    (@guido07111975)

    It’s only messed up because of the search bar.. I think you’ve added this in file header because al pages have it. So if you remove it from file header again the sidebar will display properly.

    Note: there will be a theme update soon, did you create a child theme for your modifications? Otherwise your modifications will be lost.

    Guido

    Theme Author Guido

    (@guido07111975)

    Closing this because you’ve switched theme.

    Guido

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘I need some help with the multicolors theme’ is closed to new replies.