Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #274193
    Terribleanne
    Participant

    Good Afternoon Or Morning 🙂

    1. Please could you assist me, How to do I lighten the text to prehaps be white or Light grey in the section where the blog is? I love the green when hover or click on the post but the black is a bit dark on first look.

    It is jus the sections where the blog is above the footer areas.

    2. I would like the Site Title and Discription to Be white but still have the green Hover as per the site theme.

    3. I would like the css coding to change the menu colors for mobile devices only.

    aneye4aneye.co.za

    thank you so much,

    Kindest regards

    #274263
    Skandha
    Participant

    @terribleanne: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* Lighten the text in blog posts */
    .blog .archive-content-wrap * {
        color: #888;
    }
    
    /* Site title and description green on hover */
    .site-description:hover {
        color: #50be68;
    }
    
    /* To change colors of menu on mobile devices */
    @media screen and (max-width: 1024px) {
    	#site-navigation a {
    	    color: #f23456 !important;
    	}
    	.menu-inside-wrapper {
    	    background-color: #123456;
    	}
    }

    You can change the color according to your choice.
    Let me know if this works out!
    Kind Regards,
    Skandha

    #274279
    Terribleanne
    Participant

    Thanks a million 🙂 Works like a charm!

    #274305
    Skandha
    Participant

    @terribleanne: Glad I was able to help you out. Have a good day! 🙂

    Kind Regards,
    Skandha

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Blog post title on Homepage and more..’ is closed to new replies.