Hello,
I bought the template, and I would add up the menu, 3 hyperlinks as seen in the photo.
https://dl.dropbox.com/u/21292476/casanella/languaje-casanella.jpg
Could you tell me how could I?
Thank you very much
Hello,
I bought the template, and I would add up the menu, 3 hyperlinks as seen in the photo.
https://dl.dropbox.com/u/21292476/casanella/languaje-casanella.jpg
Could you tell me how could I?
Thank you very much
Hi mendekua,
You can add that into the header.php file in the theme files. Probably just after this line:
<div id="head">
If you put the menu inside a div class of its own and then give that class an absolute position it should be fairly simple.
Regards,
Devin
Thx Devin for your answers
I have a problem that when I give data to the hyperlink, at the explorer appears domain + hyperlink data.
For example: Link| Result ==> http://www.casanella.com/test/www.google.com
How I can make the domain does not appear?
This is the page: http://www.casanella.com/test/
Hey mendekua,
Can you paste your full code you've added here so we can take a look at it?
Regards,
Devin
Hi Devin,
After div id head I put the following (at header.php):
<br />
<div id="idioma"><br />
<a href="www.casanella.com/index.php">CAS |</a><a href="www.casanella.com/eus/index.php"> EUS |</a><a href="www.casanella.com/eng/index.php"> ENG</a><br />
</div><br />
And at style.css i put the following:
<br />
#idioma{<br />
position:abslute;<br />
padding-right: 67px;<br />
text-align: right;<br />
}<br />
When I click on any link, for example CAS, I am redirected to: http://www.casanella.com/test/www.casanella.com/index.php and he wants to go to http://www.casanella.com/index.php
Thank you
Hi mendekua,
You forgot to include: http://
Try to replace your code:
<br />
<div id="idioma"><br />
<a href="www.casanella.com/index.php">CAS |</a><a href="www.casanella.com/eus/index.php"> EUS |</a><a href="www.casanella.com/eng/index.php"> ENG</a><br />
</div><br />
With this code:
<br />
<div id="idioma"><br />
<a href="http://www.casanella.com/index.php">CAS |</a><a href="http://www.casanella.com/eus/index.php"> EUS |</a><a href="www.casanella.com/eng/index.php"> ENG</a><br />
</div><br />
Hope this helps. :)
Regards,
Ismael
Problem resolved :D
Thx
Regards
Hi mendekua,
Glad we could help. :)
Cheers,
Ismael
You must log in to post.