Hi all,
Having problems removing the welcome message on the page. Can someone put me in the right direction as I have been looking for days and unable to find it.
Any help would be appreciated.
Hi all,
Having problems removing the welcome message on the page. Can someone put me in the right direction as I have been looking for days and unable to find it.
Any help would be appreciated.
Outdoorking
Live Site www.outdoorking.com.au
Br,
Did you scour the Faq/tutorials at the top of this page, and search for welcome
If Not....
https://www.zen-cart.com/tutorials/i...hp?article=128
Are You Vulnerable for an Accessibility Lawsuit?
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL, Domain, and MagicThumb with semi-annual and longer hosting
haredo thanks for your help it worked a treat but I have one other problem which I am hoping that you can help with and that is the date that is in the top bar I would like to be able to centre it.
Outdoorking
Live Site www.outdoorking.com.au
There isn't normally a date in the top section of the site and your screenshot is too small to read. Do you have a link to the site?
Kuroi Web Design and Development | Twitter
(Questions answered in the forum only - so that any forum member can benefit - not by personal message)
Here is the link:
http://www.outdoorking.com/store/
Outdoorking
Live Site www.outdoorking.com.au
That's most likely been added to your includes/templates/glacial_age/common/tpl_header.php file. Look for <div class="date">
Kuroi Web Design and Development | Twitter
(Questions answered in the forum only - so that any forum member can benefit - not by personal message)
Ok kuroi found it and this is what it shows:
</ul>
<div class="date"><?php echo strftime(DATE_FORMAT_LONG);?></div>
Do you know what code I need to put in place of the </ul> in order to centre the date. I did try using <centre> in place of the </ul> but no change in location.
Outdoorking
Live Site www.outdoorking.com.au
Get rid of all the floats and margins in .date in your stylesheet. That will leave you with:
.date {
color: #000;
font-weight: bold;
font-size: 1.2em;
line-height:normal;
}
That will center it roughly. Then add margin or padding to put it exactly where you want it.
Changed it as you said but it will not move even if I put this in:
.date {
margin:50;
color: #000;
font-weight: bold;
font-size: 1.2em;
line-height:normal;
No movement at all with the date. This is the old date setup:
.date {
margin-right: 50px;
padding-top:2px;
padding-right: 5px;
float: right;
color: #000;
font-weight: bold;
text-align: right;
font-size: 1.2em;
line-height:normal;
}
Thanks for your help.
Outdoorking
Live Site www.outdoorking.com.au
You'll need to specify the units - 50px or some number of em.