Need help

I'm currently trying help a friend build a website for his company that he is stating out.

How ever we are having some issue with a code we are trying to add a link to the *sign Up* button when I try to put a link into the button it mess's up the whole page looking for someone that can possibly help me figure it out.


Can pm me on skype : jared.martin26
 
Last edited:
I usually prefer helping people publicly so that others can learn from mistakes or issues and apply it to their site.

Should you wish to post a segment of code (rather than the site), that's great.

My guess, the problem is with CSS, and in particular the ".a" variable in the style.css file.

On the flip side of things, if you're using a submit form, then you shouldn't be using a link on the button and instead it would be a POST request on the forum tag itself.
 
Adding a direct link, instead of a button can be used as an alternative. I have found in the past that by centering a link will keep the added link in one place and does not allow it to get sandwiched, added to the end of a sentence, or pushed off to the sides.

Use for http link with WWW
Code:
<p style="text-align:center"><a href="http://www.example.com/">Add Name Of Link Here</a></p>

Use for https link with WWW
Code:
<p style="text-align:center"><a href="https://www.example.com/">Add Name Of Link Here</a></p>

Use for http link without WWW
Code:
<p style="text-align:center"><a href="http://example.com/">Add Name Of Link Here</a></p>

Use for https link without WWW
Code:
<p style="text-align:center"><a href="https://example.com/">Add Name Of Link Here</a></p>
 
Last edited:
Top