user3610219
user3610219

Reputation: 75

Remove Text From Div Footer

I paid for this webstore, it is hosted by the company I just pay an annual fee. I want them to remove my cell phone number out of the footer and they want $50 because this is considered a customization. I am fairly familiar with HTML and CSS. I have tried a few things. They only give you access to the stylesheets and images. I cannot access anything else. Any way to remove my address and phone number? Any ideas?

  <div id="footer">Copyright Store Name 123 Street Parkway PA, 18222 5781236546</div>

current css:

  #footer {
            position: relative;
            top: 0px; left: 14px;
            width: 903px; height: 43px;
            background-color:#1a508a;
            text-align:center;
            line-height: 43px;
            color:#ffffff;

I have tried after and content with the css seems not to work.

I did display:none then put a background image of what I want to show. Only remedy I can see possible.

Upvotes: 0

Views: 103

Answers (1)

user2424370
user2424370

Reputation:

Try this:

#footer{
   display: none;
}

This will hide the footer. Hope it helps!

Upvotes: 1

Related Questions