-
AuthorPosts
-
July 10, 2014 at 1:26 pm #67209
Hello there. I searched and searched but could not find an answer.
I followed how to remove the “permalink to” hover using this link http://theme.co/x/member/forums/topic/remove-permalink-to-hover/#post-66753
However, there is still a chain link hover logo that appears on my portfolio gallery (under construction)
http://piercingsbyfernanda.com/fer/gallery-2/
Question: How do I change the link hover icon to say view. As in this fellow’s portfolio page:
http://www.markscott.photography/portfolio/
Thank you in advance for your help. Loving X!
July 11, 2014 at 3:49 pm #67606Hi Rob,
To do so, add the following CSS codes via Customizer > Custom > CSS:
.entry-thumb:before { content: none; }
Hope this helps, Cheers!
July 18, 2014 at 10:09 am #70597What I would love to do, is change the way the permalink icon appears on hover in Integrety, to the way the info ‘slides in’ with portfolio items in Renew.
So I’m using Intergrety, but want the animation of the portfolio-item hover of Renew.
Can this be done with CSS styling too and if yes, what would be the code for that? Would be really much appreciated.
Thanks in advance!
Cheers, Coen.July 19, 2014 at 3:57 am #70883Hi Coen,
Thank you for writing in!
Integrity and renew has different element structure. So styling isn’t enough to implement this. You will have to do custom development for template. We don’t support mixing of stack so we can’t provide any help about this. You may hire a developer and do some changes for you 🙂
Thank you for understanding.
July 19, 2014 at 5:27 am #70891Thanks for your reply! Ok that’s too bad.
And how about changing the permalink to a different icon?
I tried replacing ‘none’ with different shortcodes in the CSS styler, but didn’t seem to work so far..
Thanks again!
Cheers, Coen.
July 20, 2014 at 2:29 am #71108Hey Coen,
Please try the code below to change the icon.
.entry-thumb:before { content: "\f13d"; }
f13d is the anchor icon’s unicode. I used it only as sample. You can find the unicode of the icons at http://fortawesome.github.io/Font-Awesome/icons/
Thanks.
July 20, 2014 at 5:50 am #71141Thanks so much for that! Although it doesn’t seem to work, unfortunately…
What this does for me is replace the icon with the text ‘f13d’ in stead of actually showing the anchor icon.Any idea how come? Sorry for the many questions!
Cheers, Coen.
July 20, 2014 at 9:39 pm #71300Hi Coen,
Try this one, add this code at your child theme’s functions.php
add_action('wp_head', function(){ ?><style> .entry-thumb:before { content: "\f13d" !important; } </style><?php } );
Customizer tend to strip out backslash, so this one is another alternative.
Thanks!
July 21, 2014 at 8:49 am #71462Awesome!
Thank you very much.
July 21, 2014 at 4:27 pm #71686No problem,
Cheers
August 10, 2015 at 12:56 am #354684This reply has been marked as private.August 10, 2015 at 1:01 am #354689Hello There,
Thanks for updating this thread!
We kindly ask that you open your request in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
September 11, 2015 at 10:40 am #385856Dear Themeco Staff,
I have added this code to my Integrity 1 child theme’s functions.php
add_action('wp_head', function(){ ?><style> .entry-thumb:before { content: "\f04b" !important; } </style><?php } );
It put a play button icon in place of the chain link, which is perfect. But, how do I remove the red dot that is under that icon?
September 11, 2015 at 2:36 pm #386044Hi Neal,
Thanks for writing in! To assist you with this, we’ll first need you to provide us with your URL as stated on the forum entrance page. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you.
Thanks!
-
AuthorPosts