Hi,
In the original version you have an expression stating:
"<h2>"+MainTitle+"</h2><span>"+SubTitle+"</span>"
You probably want to break that down into 3 different expressions:
"<h2>"+Option1+"</h2>"
"<h2>"+Option2+"</h2>"
"<h2>"+Option3+"</h2>"
Now around each one of these expressions just put the link widget!
As an accelerator you can just right click the expression and choose the option "Link to".
Another way to do it is add the <a> tag to those expressions like this:
"<a href='www.ggogle.pt'><h2>"+Option1+"</h2></a>"
Hope it helps
In the original version you have an expression stating:
"<h2>"+MainTitle+"</h2><span>"+SubTitle+"</span>"
You probably want to break that down into 3 different expressions:
"<h2>"+Option1+"</h2>"
"<h2>"+Option2+"</h2>"
"<h2>"+Option3+"</h2>"
Now around each one of these expressions just put the link widget!
As an accelerator you can just right click the expression and choose the option "Link to".
Another way to do it is add the <a> tag to those expressions like this:
"<a href='www.ggogle.pt'><h2>"+Option1+"</h2></a>"
Hope it helps