Zen Cart Logo
Forums / All Other Contributions/Addons / Help with Newletter Subscribe-only mod

Help with Newletter Subscribe-only mod

Views: 710

Results 1 to 6 of 6
17 Oct 2011, 8:47 PM
#1
somi97 avatar

somi97

New Zenner

Join Date:
Jul 2010
Posts:
16
Plugin Contributions:
0

Help with Newletter Subscribe-only mod

I've installed the mod and it's worked perfectly. However, it's added the word "subscribe" to the site title and at the bottom of the main content area. I removed all the files however the subscribe: keep appearing

How do I get rid of that?! (see site here: http://www.ironsightsfirearms.com

17 Oct 2011, 9:07 PM
#2
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Location:
N of San Antonio TX
Posts:
9,796
Plugin Contributions:
15

Re: Help with Newletter Subscribe-only mod

You've got your work cut out for you. Those store-bought templates can be a :censored:

This one is fairly easy, but it's NOT going to get better.:no:

For now, you can remove all the listings for #indexDefaultHeading around line 806 of your stylesheet and replace it with display: none;

Make sure this doesn't break something else in the process.

NOTE TO ALL: Mods found in the Free Software Add Ons are generally tested to work with a standard install. Searching the forum, you'll find many horror stories of how they will not work with most store-bought templates.

Caveat Emptor!

18 Oct 2011, 3:48 AM
#3
somi97 avatar

somi97

New Zenner

Join Date:
Jul 2010
Posts:
16
Plugin Contributions:
0

Re: Help with Newletter Subscribe-only mod

Thanks for the reply, what you mean is to replace

#indexDefaultHeading {
margin: 0;
padding:0;
}

with display: none; or just the word indexDefaultHeading

18 Oct 2011, 3:53 AM
#4
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Location:
N of San Antonio TX
Posts:
9,796
Plugin Contributions:
15

Re: Help with Newletter Subscribe-only mod

#indexDefaultHeading {
margin: 0;
padding:0;
}becomes> #indexDefaultHeading {
display: none;
}

18 Oct 2011, 1:32 PM
#5
somi97 avatar

somi97

New Zenner

Join Date:
Jul 2010
Posts:
16
Plugin Contributions:
0

Re: Help with Newletter Subscribe-only mod

I changed the #indexDefaultHeading to

#indexDefaultHeading {
display: none;
}

however, I still have the " subscribe" on the site title. Is there something else that needs to be change. Once again, thanks for your help.

18 Oct 2011, 1:56 PM
#6
somi97 avatar

somi97

New Zenner

Join Date:
Jul 2010
Posts:
16
Plugin Contributions:
0

Re: Help with Newletter Subscribe-only mod

Never Mind...I found the problem. Thanks again.