How To Add Text Under A Photo And Change Link Sizes?

1) I want to add something simple like "click here for a larger photo" under the product photo.

on the category page.

and

2) Under the product photo on the product detail page also add similar text how do I do this?

3) How do I change the link size in the welcome message on the homepage

4) How do I change the link size in category descriptions?

Example:

This is a beautiful widget - please visit this link to see it.

Note I try to make the change in the editor by select all and then select one font size it doesn't work.

I am using CKEditor should I change?

Interesting - from the no response so far either it is difficult or so easy that it is boring to respond to... smiling.

1) I want to add something simple like "click here for a larger photo" under the product photo.

on the category page.

and

2) Under the product photo on the product detail page also add similar text how do I do this?

You should edit the following files:

design/themes/THEME/templates/views/products/components/product_images.tpl

design/themes/THEME/templates/views/categories/view.tpl

3) How do I change the link size in the welcome message on the homepage

4) How do I change the link size in category descriptions?

Just switch CKEditor to the source code mode and add unique class attribute to these links. Then open Theme editor, go to the CSS section and add new CSS rules for this class. E.g.

a.my_class, a.my_class:hover {
    font-size: 16px;
}

Ecom.

Thank you for your post.