Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #313482
    Gnaredi
    Participant

    Hi,

    1. I am using the Fotografie free theme for my website. I put links in the paragraph content sometimes but they are not showing a different color from the regular text. There is a link in the paragraph here but its not visible, thought link itself is working.
    2. I am working with the static homepage design for which I have set up a separate Post page. This page is not showing any text formatting like font size etc . Also I want to disable the featured images for the posts from this page which I don’t know how to do.
    3. Also, how to reduce the height of the featured image without compromising the responsiveness.

    I appreciate your help on these issues!

    Thanks!

    #313505
    tikaram
    Keymaster

    @gnaredi : I will check for the issue and get back to you soon. Sorry for the inconvenience caused.

    Regards,
    Tikaram

    #313535
    tikaram
    Keymaster

    @gnaredi : To change the color of the links you will need to add a custom css.
    Login to your WordPress admin section. Go to Appearance => Customize => Additional css and add the following css.

    a {
      color: #color-code;
    }

    Note: In the above css please change the #color-code with the desired color code  that you can find easily on the web.

    Regarding the disabling of featured image : login to your WP admin section. Go to Posts section. Edit the desired post and remove the featured image from the particular post and save changes.

    Can you please explain in more detail or provide a URL of the post where you want to reduce the height of featured image.

    Regards,
    Tikaram

    #313552
    Gnaredi
    Participant

    Thanks for your response Tikaram!

    • This is the link where I have added a featured image to a post and would like to be able to reduce the height of it.

    https://garimanaredi.com/2022/12/03/seurats-drawings/?preview_id=321&preview_nonce=371b511fc2&preview=true&_thumbnail_id=326

    • Also, If you go to the link below, as there are no featured images in the two posts, it is showing a blank space designated for the image. I would like to get rid of that space.

    https://garimanaredi.com/posts/

    • I added the css for the link but it led to all the links turning blue. I just want the link in the content that I am posting to be blue.

    https://garimanaredi.com/2022/12/06/giacometti-exhibit/

    Thanks!

     

     

     

    #313579
    tikaram
    Keymaster

    @gnaredi : Please add the following additional css and let me know if this works as desired or not.

    /*Reduce height of featured image*/
    .single .post-thumbnail img {
      max-width: 50%;
    }
    
    /*remove featured image from posts*/
    .post-archive .post-thumbnail {
      display: none;
    }
    .post-archive .content-right {
      width: 100%;
    }
    .post-archive .post-wrapper {
      max-width: 100%;
    }
    
    /*content link color*/
    .entry-content a {
      color: #0000FF;
    }

    Regards,
    Tikaram

    #313632
    Gnaredi
    Participant

    Thanks Tikaram! Your suggestions worked great!

    I have a couple more queries if you can help with those as well:

    1. The posts page archive has headings showing as very big. I am using the heading H3 for it while formatting it but it’s not showing up on the Posts page. https://garimanaredi.com/posts/
    2. When I click on the Gallery link, it goes to the homepage where I have the gallery page set up right under the featured image. Is there a way to go where the gallery section is on the homepage when we click on the Gallery link in the main nav?

     

    #313654
    tikaram
    Keymaster

    @gnaredi : Please add the following additional css to change the font size of post page headings

    .blog .entry-title {
      font-size: 2rem;
    }

    To go to the Gallery section directly you will need to add the following as the link

    https://garimanaredi.com/#content

    Please let me know if this helps you out.

    Regards,
    Tikaram

    #313900
    Gnaredi
    Participant

    Thanks a lot Tikaram! It’s all working beautifully now! I have one more query if you can help out with that as well. I am using my website as a portfolio website. For the image showcase I am using Catch gallery plugin. The issue is that the images are not getting cached on Google. Is there a way to fix that?

    Thanks again!

     

    #313992
    tikaram
    Keymaster

    @gnaredi : I suggest you to try a suitable cache plugin from WordPress.org
    Please let me know if you have any more theme related issues.

    Regards,
    Tikaram

    #314291
    Gnaredi
    Participant

    Thanks a lot!

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Change color of links in paragraph; remove featured image from post page’ is closed to new replies.