Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #841819

    hey there,

    i want to DISABLE the LINKS of the blog post titles on the main blog page. mine is called “episodes.”

    NOTE: i ONLY want to disable the title links on the MAING BLOG PAGE. (i am showing full blog content on this page anyway.) i STILL want the links ACTIVE on the SEARCH PAGE! they need to be active on the search page. but no links on the blog page.

    thanks for your help!

    chris

    #842023

    Hey vlkwatchman,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .page-id-1037 h2.post-title.entry-title a {
      pointer-events: none;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #842060

    thanks victoria! that worked!

    now … the link color was still showing up on hover. so i did the following css:

    h2.post-title:hover {color:#000000!important;}

    strange … instead of remaining black, the titles turn gray once you hover over. is there an opacity setting?

    how can i keep the titles BLACK on hover? especially since there is no link?

    thanks!

    #843155

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    .html_elegant-blog #top .post-entry .post-title:hover {
        opacity: 1;
    }
    

    Best regards,
    Yigit

    #843163

    that’s it! thanks man!

    we can close this now.

    chris

    #843167

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘how can i DISABLE blog post title LINKS on the main blog page ONLY?’ is closed to new replies.