Change the "heart" for likes

rtr2006

Active member
I thought this could be done in extra.css but it ended up just adding an additional icon beside the original heart.

How can I change that heart to a thumbs up, a checkmark or something besides that!

Thanks
 
ummmm I changed 2 other boxes

Under "likes icon" area, changed this to the height and width of the image I uploaded

Miscellaneous
Width: 18px
Height: 18px
 
ummmm I changed 2 other boxes

Under "likes icon" area, changed this to the height and width of the image I uploaded

Miscellaneous
Width: 18px
Height: 18px

Change the following

Code:
.messageRight .messageUserInfo {
float: right;
}


to

Code:
.messageRight .messageUserInfo {
float: left;
}

and then change the following

Code:
.message.messageRight.messageFullBlock .messageInfo {
margin-left: 0;
margin-right: 115px;
}

to
Code:
.message.messageRight.messageFullBlock .messageInfo {
margin-left: 115px;

}

that seemed to sort it out in firebug when i test it.
[/code]
 
Change the following

Code:
.messageRight .messageUserInfo {
float: right;
}


to

Code:
.messageRight .messageUserInfo {
float: left;
}

and then change the following

Code:
.message.messageRight.messageFullBlock .messageInfo {
margin-left: 0;
margin-right: 115px;
}

to
Code:
.message.messageRight.messageFullBlock .messageInfo {
margin-left: 115px;

}

that seemed to sort it out in firebug when i test it.
[/code]
All this goes to extra css?
 
Yes. All custom CSS should go to extra.css
Actually what i want to do is to change the "likes" with a heart

ory-of-a-legend-jpg.57401

i.e. kostas 2cv
i-5hQLL9G.png
this.

Is it possible?
 
Edit all instances of the like related phrases and replace the text "like" with <img src="http://digitalviews.smugmug.com/photos/i-5hQLL9G/0/O/i-5hQLL9G.png" />

For example:
Code:
{user1}, {user2}, {user3} and <a href="{likesLink}" class="OverlayTrigger">{others} others</a> <img src="http://digitalviews.smugmug.com/photos/i-5hQLL9G/0/O/i-5hQLL9G.png" /> this.

Host the image locally (on a sprite).
Thanks for the help Brogan.

In "likes_you_like_this" for instance it must look like this?

Code:
You </a> <img src="http://digitalviews.smugmug.com/photos/i-5hQLL9G/0/O/i-5hQLL9G.png" /> this.

If yes it doesn't work. Please note that the image is hosted in my online gallery (smugmug.com). That may cause the problem?
 
Top Bottom