• Skyforger

    (@skyforger)


    Hi i need to make link style in footer.php at the copyright section.
    But it calls the existing syle.css and makes it impossible to see due to background color.

    <div id="footer">
    	<div id="footertext">
    		Copyright &copy; <?php echo date('Y');?>By me<br/>
    		Website by <a href="https://www.link.com">linkname</a><br />
    	</div>
    </div>
    </div>
    
    		<?php do_action('wp_footer'); ?>
    </body>
    </html>
Viewing 2 replies - 1 through 2 (of 2 total)
  • C W (VYSO)

    (@cyril-washbrook)

    Override the general link colour with a more specific rule. For instance, this rule:

    a {
       color: #333;
    }

    … would be overridden in the footer by this rule:

    #footer a {
       color: #FFF;
    }

    Thread Starter Skyforger

    (@skyforger)

    Thnx, feel kinda stupid now how simple it was.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Seperate style or stylesheet for footer.php’ is closed to new replies.