mquintos Posted June 30, 2020 Share Posted June 30, 2020 Site URL: https://www.markdanielquintos.com Hi there, I am using template 'Avenue' (markdanielquintos.com) As of now, when clicking on my name in the site title, it links back to the homepage, which is great. I'd like for the subtitle of 'Cinematographer' to operate the same way. I've been googling for lots of code and have found a way to turn 'Cinematographer' into a link, but when I do so, it hovers as red like the rest of my links, I'd like for it to have no change when hovering over it, as 'Mark Daniel Quintos' is. Any tips? Thanks in advance! Link to comment
mquintos Posted July 1, 2020 Author Share Posted July 1, 2020 10 minutes ago, rwp said: Do you have a premium account? Don't believe so, under plan it says "Personal" Link to comment
rwp Posted July 1, 2020 Share Posted July 1, 2020 You can't do what you want with CSS, and you would need a premium plan to use the code injection to accomplish it. Link to comment
mquintos Posted July 1, 2020 Author Share Posted July 1, 2020 4 minutes ago, rwp said: You can't do what you want with CSS, and you would need a premium plan to use the code injection to accomplish it. Copy, thanks for the heads up Link to comment
mquintos Posted July 1, 2020 Author Share Posted July 1, 2020 10 minutes ago, rwp said: You can't do what you want with CSS, and you would need a premium plan to use the code injection to accomplish it. So to clarify, with a personal account, I'm only allowed to do SOME custom CSS? Link to comment
tuanphan Posted July 1, 2020 Share Posted July 1, 2020 I've been googling for lots of code and have found a way to turn 'Cinematographer' into a link, but when I do so, it hovers as red like the rest of my links, I'd like for it to have no change when hovering over it, as 'Mark Daniel Quintos' is. Any tips? You can use CSS to solve this. Turn it to link first, then let us know, we will give the code Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
rwp Posted July 1, 2020 Share Posted July 1, 2020 If you end up needing to, here's the jQuery and CSS to make it work, but you will need a premium account. If you can make it a link, CSS can take care of the colors. $('.logo-subtitle').html("<a href='/' class='sublogo'>Cinematographer</a>"); .sublogo:hover { color: inherit !important; } Link to comment
mquintos Posted July 1, 2020 Author Share Posted July 1, 2020 12 hours ago, tuanphan said: I've been googling for lots of code and have found a way to turn 'Cinematographer' into a link, but when I do so, it hovers as red like the rest of my links, I'd like for it to have no change when hovering over it, as 'Mark Daniel Quintos' is. Any tips? You can use CSS to solve this. Turn it to link first, then let us know, we will give the code So I have it set to a link now, by entering this into the tag line section under Logo & Title on the squarespace UI: Quote <a href="/">Cinematographer</a> Link to comment
rwp Posted July 1, 2020 Share Posted July 1, 2020 I didn't know you could put HTML in the tag line.... cool... This CSS will fix the hover .logo-subtitle a:hover { color: inherit; } Link to comment
mquintos Posted July 1, 2020 Author Share Posted July 1, 2020 3 minutes ago, rwp said: I didn't know you could put HTML in the tag line.... cool... This CSS will fix the hover .logo-subtitle a:hover { color: inherit; } Worked a charm, thank you! Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.