• Resolved heartcenter333

    (@heartcenter333)


    Hi I am using wordpress theme RoundTable ~ http://heartcenter333.com/

    I would really like to change that color or image on my footer, or just take the footer off completely… Also to change the words on the footer as well… Thanks for any help… 🙂

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter heartcenter333

    (@heartcenter333)

    I just posted this under how to as well …

    Thread Starter heartcenter333

    (@heartcenter333)

    🙂

    Hi heartcenter,

    It looks like you’ve been working with a child theme, therefore you can add your modifications directly in style.css. To get rid of the footer background image, you could modify the CSS rules for the #footer element. This is what it looks like at present:

    #footer {
    	border: 0;
    	clear: both;
    	margin: 0;
    	padding-top: 20px;
    	text-align: center;
    	vertical-align: bottom;
    	width: 100%;
    	height: 200px;
    	background: url( i/backgrounds/roundtable-bg-footer-1.jpg ) bottom center no-repeat;
    	/*background-attachment: fixed;*/
    }

    You need to change the background declaration like this

    #footer {
    	border: 0;
    	clear: both;
    	margin: 0;
    	padding-top: 20px;
    	text-align: center;
    	vertical-align: bottom;
    	width: 100%;
    	height: 200px;
    	background-color: red;
            background-image: none;
    	/*background-attachment: fixed;*/
    }

    Here I got rid of the background image and made the background color red, just for demonstration purposes (you’re free to add whatever color you like).

    I hope this helps.
    – Antonietta

    Thread Starter heartcenter333

    (@heartcenter333)

    Thanks for your reply… I’m checking it out right now… 🙂

    Thread Starter heartcenter333

    (@heartcenter333)

    Oh, that is great!!! 🙂 Easier than one would think… Now how do I make it transparent or where you only see the words? Thanks again…

    Thread Starter heartcenter333

    (@heartcenter333)

    Maybe where it just becomes the bottom of the page as the rest of the page looks… Something like that, 🙂

    To make it transparent, simply replace red with transparent on the background-color CSS rule. 🙂

    Thread Starter heartcenter333

    (@heartcenter333)

    Got the transparent part thank you… I will make a new thread for the words… 🙂

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Footer Changes…’ is closed to new replies.