• Resolved The Night Fox

    (@the-night-fox)


    Hi,

    I just created this website tonight using a free theme. The theme is great, but I have a few issues that I can’t figure out.

    1. I have a link at the bottom of the home page. The html looks like this:

    <font size="4"><a href="https://www.link.net/" style="color:#CCEEFF">Click here to visit his website now.</a></font>

    When you put the mouse over the link it suddenly shrinks to a smaller font size. I assume this is a css issue, but I can’t find any answers in my stylesheet.

    When you mouse over the link in the sidebar under articles, the anchor text becomes slightly bigger, but again I have no idea what causes this.

    I’m sure there is an easy fix for this.

    2. On my contact page I’m using a popular contact form plugin called contact form 7. Because the text for my body is white I’m unable to see any text when I type in the search form. Is there a way I could force another color text for just one page of the site? Using <font color= doesn’t work.

    Thanks for your help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • for the first problem:
    style.css line no 933

    #footercontent a, a:hover{
    font-size:12px;
    font-family:arial;
    }

    the effect is of the a:hover, either remove it or give 11px here.

    <font size="4"><a href="https://www.link.net/" style="color:#CCEEFF">Click here to visit his website now.</a></font>
    remove this <font size......,but after it that will be in 12px..

    for second problem:

    add this in your style.css

    #wpcf7-form input{
    color:#000000;
    }

    just try these, if want any help, just answer in this forum again and again…

    Thread Starter The Night Fox

    (@the-night-fox)

    Thanks, I’ve got everything but the contact form working now ?? I sent a message to the developers so hopefully the will know what to do.

    Thanks again!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Link size changes on mouse over’ is closed to new replies.