Zen Cart Logo

Flip..Flop

Locked

Views: 1,766

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
12 Sep 2006, 11:15 AM
#1
silverkop avatar

silverkop

Zen Follower

Join Date:
Sep 2006
Location:
U.K.
Posts:
164
Plugin Contributions:
0

Flip..Flop

Not sure if this is the right place for this , but here goes.

I want to move header logoup up to top left and move tagline down to middle where logo is now and also I seemed to have lost the date...how can I install this again.

http://slstamps.co.uk

Many thanks.

13 Sep 2006, 10:43 AM
#2
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: Flip..Flop

To move the logo to the toip left position find the following in your stylesheet and delete the text marked in red> #logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {

float: left;
}then change the styling immediately below to> #logo {
display:inline;
text-align:left;
}To center the tagline where the logo used to be fidn the following and change the alignment from left to center where highlighted> #tagline {
padding-top:10px;
color:#000000;
font-size: 2em;
text-align : left;
vertical-align: middle;
}I'm afraid that I don't understand the 3rd party of your post concerning the date.

13 Sep 2006, 11:58 AM
#3
silverkop avatar

silverkop

Zen Follower

Join Date:
Sep 2006
Location:
U.K.
Posts:
164
Plugin Contributions:
0

Re: Flip..Flop

Kuroi,

Many thanks, that has helped.

Is it possible to get the logo further left.

What I also wanted was to display "to-days date" on my site if that is possible?

Thanks again.

Stephen

13 Sep 2006, 12:43 PM
#4
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: Flip..Flop

The changes haven't had the intended effect because in step 2 instead of changing "the styling immediately below ..." you have inserted the revised styling "above ...". The old styling is therefore still in place, and later in the stylesheet, so over-rides the new styling. Delete out the old #logo styling and the new styling will take effect as intended.

To insert a date, work out where on the page you want it. Find the relevant place in the appropriate template file (probably tpl_header.php) and insert > <?php echo date("D M d Y");?>Other formating is possible and a definitive list of the possiblities can be found at the online php manual.

15 Sep 2006, 12:56 PM
#5
silverkop avatar

silverkop

Zen Follower

Join Date:
Sep 2006
Location:
U.K.
Posts:
164
Plugin Contributions:
0

Re: Flip..Flop

kuroi:

The changes haven't had the intended effect because in step 2 instead of changing "the styling immediately below ..." you have inserted the revised styling "above ...". The old styling is therefore still in place, and later in the stylesheet, so over-rides the new styling. Delete out the old #logo styling and the new styling will take effect as intended.

.

:oops:

Many thanks: