Forums / Templates, Stylesheets, Page Layout / Someone please help!!

Someone please help!!

Locked
Results 1 to 20 of 27
This thread is locked. New replies are disabled.
04 Sep 2006, 01:30
#1
raindark avatar

raindark

New Zenner

Join Date:
Aug 2006
Posts:
52
Plugin Contributions:
0

Someone please help!!

I am trying to insert this bacground box to replace the4 sideboxes. i want it to be one long box . It just keeps doubling in all the boxes how do i change this? here take a look

http://www.veryprrettythings.com

thanks:huh:
04 Sep 2006, 02:07
#2
raindark avatar

raindark

New Zenner

Join Date:
Aug 2006
Posts:
52
Plugin Contributions:
0

Re: Someone please help!!

i have a graphic that I inserted but its not the way i want it. The border that was originally around it i deleted. I want the picture to be the border for all the side boxes. where do I insert this? here take a look..
http://www.veryprrettythings.com

Thanks
04 Sep 2006, 02:10
#3
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Posts:
62,757
Plugin Contributions:
1

Re: Someone please help!!

Please post just one thread on each question ... thanks! :smile:
04 Sep 2006, 02:10
#4
seethrou avatar

seethrou

Totally Zenned

Join Date:
May 2004
Posts:
1,156
Plugin Contributions:
0

Re: Someone please help!!

You may refer to the Future Zen Series Templates for reference.
It is available in the downloads area.
04 Sep 2006, 02:14
#5
raindark avatar

raindark

New Zenner

Join Date:
Aug 2006
Posts:
52
Plugin Contributions:
0

Re: Someone please help!!

hello,,
honestly I have no idea what you mean. I went there but it shows you how to download the future zen. I'm not sure thats what I need. Thanks
04 Sep 2006, 02:40
#6
seethrou avatar

seethrou

Totally Zenned

Join Date:
May 2004
Posts:
1,156
Plugin Contributions:
0

Re: Someone please help!!

May be you need to find the final way by yourself, most of the time others can only provided the direction. :smile:

Take a look and feel of the demo Future Zen, and it use graphics for the sidebox.

Then
1st, download the Future Zen Templates
2nd, install it and config in your testing version of ZC and study how it handle the sidebox and its related graphics.

Or
3rd, if you have enough experiences than just look at the stylesheet and you can find the way how it works.

And the key points, it break the box graphic into 2 parts. One for the sidebox heading and the other is for the sidebox bottom. And the below is the related section for the sidebox graphics of Future Zen in the stylesheet
.
.leftBoxHeading, .rightBoxHeading {
margin: 0;
background-image:url(../images/sidebox_header_bg.gif);
background-repeat:no-repeat;
padding: 0.5em 0.2em;
}

.sideBoxContent {
background-image:url(../images/sidebox_content_bg.gif);
background-repeat:no-repeat;
background-position:bottom;
padding: 0.6em 0.7em 1.4em 0.6em;
}
04 Sep 2006, 04:31
#7
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Posts:
21,876
Plugin Contributions:
6

Re: Someone please help!!

Another clue:

The code above is for decorating each sidebox individually. Since you want to enclose them all in one box, you will need to apply the logic to larger units.

NavColumnOneWrapper encloses all the left sideboxes, as you will see if you use the FF Web developer tools, and navColumnOne encloses that. So you can put the top & sides of your border in the outer entity and the bottom in the next inner one so it covers the lower ends of the sides. Adjust margins & padding in all places necessary and you will be done. (I know, easier said than done, but work on it, experiment, and study CSS if necessary. You will be better prepared for your next project.) :smartass:
04 Sep 2006, 09:00
#8
seethrou avatar

seethrou

Totally Zenned

Join Date:
May 2004
Posts:
1,156
Plugin Contributions:
0

Re: Someone please help!!

For the reader follow on
====================
Please note the following has not been tested and only suggested for experience! :P


@ raindark

Some suggestions, before modifications, please first read the FAQ, the Wiki and search for the basic concepts about your subjects. It will help to turn the headache or hair loss into more joys. :smile:

The following may be still not the final way but hope this closer.
Your image seems with problems, it contain large white margins and wider than the column size, so only portions of the graphic showed. Again it is about the basic concepts you need to notice.

Suggest to trim off all the margins not needed unless it is by design and I misunderstand about it.
Then cut your image mirror.jpg into 2 parts,
one for the top or header and for e.g. I call it mirror_1.jpg,
and the other for the bottom and for e.g. I call it mirror_2.jpg.
But the length of mirror_2.jpg must sufficient or longer than all the lengths of your contents!

After that, copy the idea from Future Zen and got the advices from gjh42. :smile:
And put the following to your stylesheet and trial and errors for the experiences.

#navColumnOne {
margin: 0;
background-image:url(../images/mirror_1.jpg);
background-repeat:no-repeat;
padding: 0.5em 0.2em; /* tune it to fit */
}

#navColumnOneWrapper {
background-image:url(../images/mirror_2.jpg);
background-repeat:no-repeat;
background-position:bottom;
padding: 0.6em 0.7em 1.4em 0.6em; /* tune it to fit */
}


Again, it is your turn now. :smile:

.
05 Sep 2006, 02:19
#9
raindark avatar

raindark

New Zenner

Join Date:
Aug 2006
Posts:
52
Plugin Contributions:
0

Re: Someone please help!!

thanks....
26 Oct 2006, 02:29
#10
raindark avatar

raindark

New Zenner

Join Date:
Aug 2006
Posts:
52
Plugin Contributions:
0

Re: Someone please help!!

I put an image into my sideboxes as a border. And its all doubled . Am I using the wrong code or is it in the wrong location?


http://www.veryprrettythings.com

Thanks !
26 Oct 2006, 04:23
#11
seethrou avatar

seethrou

Totally Zenned

Join Date:
May 2004
Posts:
1,156
Plugin Contributions:
0

Re: Someone please help!!

First, you are have two stylesheets, stylesheet_new.css and stylesheet_org.css.
It seems that you are using the version before ZC v1.3.5, please upgrade it to the current version as you still under development. It will save you time for the upgrade later.

Second, (I quote some of myself in the other topic),
you are using the default demo template - classic.
It is not wise to use it directly for your add on and modifications, it will be over wirte in the future upgrade. And you will create more troubles in upgrading.

Suggest to use your own template for that and it is easy.
My steps,
1. copy the classic template directory to a new template directory, called
includes/templates/classic_my

2. and modify the file, in your new template, for your own use
includes/templates/classic_1/template_info.php
$template_name = 'Classic Contemporary Green';


3. For example, to read as
$template_name = 'My Classic Contemporary Green';


It is only for example, you can change it to whatever you like.
And it will show up in the admin's Template Selection as a new template's title for selection.

Then within a minute or two, after the above steps, you can clone a template for your own use. It will not be overwrited in the upgrade.

And you have a new template and the path is:
includes/templates/classic_my


Return to your issue,

From recall, I had answered your question for this before for I remember the golden mirror image.
Please give more detail.
Now, you have 2 set of images of mirrors. One is golden and the other is purple and they both show up and overlap.

What is the exact effect for the sidebox which you want to achieve?
Do you want to use the golden one or the purple one?
Or, do you want to have a Mirror inside another Mirror?
28 Oct 2006, 00:34
#12
raindark avatar

raindark

New Zenner

Join Date:
Aug 2006
Posts:
52
Plugin Contributions:
0

Re: Someone please help!!

Hello,

ok I inserted two images in my sideboxes. The first problem is that the images overlapped when I took ou the featured products box, and the second problem is I just cant get them aligned. I want the top box to be where the second one is . And I would like for the categories to fit in the boxes. I have resized them many times but that doesnt work. Thanks..

http://www.veryprrettythings.com
28 Oct 2006, 01:06
#13
barco57 avatar

barco57

Totally Zenned

Join Date:
Apr 2006
Posts:
2,841
Plugin Contributions:
0

Re: Someone please help!!

well isn't this a quandry (sp?) Firefox makes this difficult to troubleshoot with its edit css feature as it doesn't handle relative paths to images well, basically is they disappear. So with that said when you turn off the background images you see that the sidebox content are lined up all the way down, no overlap, so we know that it is working correctly. The problem is with the sidebox background images as you can see here:
#navColumnOne {
       margin:0;
       background-image:url(../images/sidetop-3.jpg);
       background-repeat:no-repeat;
       padding: 1.3em 1.2em;
}
	

#navColumnOneWrapper {
      background-image:url(../images/sidebottom-4.jpg);
      background-repeat:no-repeat;
      background-position:bottom;
      padding: 0.6em 0.7em 0.4em 0.6em
}


You have the images tied to 2 different things, so of course they don't work together. So when you turn off the one box the column shrunk and the image tied to the bottom of that column moved up.
I would implement this differently. I would go through and figure out all class and ids for the different boxes, including the one for the shopping cart which doesn't appear until something is in the cart (if your gonna use it).
Then the box that you want to be at the top would have the fancy header (Scroller thingy) for the border-top and border-left, -right would be set to double and no border-bottom defined.
Then the next boxes in the lineup would have no top or bottom borders, only border-left, -right.
The last box would have the opposite setup as the top box, no border-top, only sides and bottom.
The classes and ids for the boxes is in the code but not always in the stylesheet, that is the homework make a list of all of them.:smartass:

Implementing them this way would make them dynamic, they would work when you add more content to them. As they are now if you add more content to them then can fit you would have to redo the images. What a pain that would be.
Hope I made some sense and gave you some info you can use
28 Oct 2006, 01:33
#14
raindark avatar

raindark

New Zenner

Join Date:
Aug 2006
Posts:
52
Plugin Contributions:
0

Re: Someone please help!!

Thanks . I understand what you are saying and it makes sense but i am confused by classes. I am not familiar with coding or anything dealing with websites for that matter , How would I start to define the classes or find out whats what?

Thanks for the advice..
28 Oct 2006, 02:07
#15
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Posts:
31,500
Plugin Contributions:
4

Re: Someone please help!!

Get firefox and the web developers extentions available at the FF site, You might also like the ardvark plugin.

With these you can set them to show the information is several ways and therefore be able to make a list of the sideboxes that you are displaying. You only have to select the top most box to always be the top and the bottom to always be the bottom through the order function in the layoutboxes controller in the admin.
28 Oct 2006, 21:57
#16
raindark avatar

raindark

New Zenner

Join Date:
Aug 2006
Posts:
52
Plugin Contributions:
0

Re: Someone please help!!

I really need some assistance. I have been working at this for a while now and I m just frustrated. I asked for advice before but I really didnt get it. My side boxes are overlapping and I cant figure out how to fix them. I would just like them aligned and have the words fit properly. Can someone please tell me what I"m missing or what I have to change. This is my url http://www.veryprrettythings.com


I appreciate any help I can get!:cry:
28 Oct 2006, 22:23
#17
waveneybooks avatar

waveneybooks

New Zenner

Join Date:
Sep 2006
Posts:
64
Plugin Contributions:
0

Re: Someone please help!!

h4, h5, h6, LABEL, h4.optionName, LEGEND, ADDRESS, .sideBoxContent, .larger{
font-size: 1.5em;
}

Try making the above font size smaller ie 1.0em
28 Oct 2006, 22:42
#18
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Posts:
31,500
Plugin Contributions:
4

Re: Someone please help!!

Did you get FireFox & the web developers extention?
You still have these attached to elements that do not work with each other as barco stated.

In addition

Have you looked at your images?
The following image that you are using as a top image has a bottom black divider and it is attached to #navColumnOne which is only the container for your sideboxes
includes/templates/classic/images/sidetop-3.jpg


The following image has a top black divider and a bottom black divider and is not what would be considered a "bottom image"
You have it attached to the #navColumnOneWrapper which is contained inside the #navColumnOne div
includes/templates/classic/images/sidebottom-4.jpg

Both are padded causing the alighment issue
The images are not apropriate for what you are attempting to do

You need to edit the graphics, then attach them to the proper side boxes
29 Oct 2006, 03:08
#19
seethrou avatar

seethrou

Totally Zenned

Join Date:
May 2004
Posts:
1,156
Plugin Contributions:
0

Re: Someone please help!!

@ raindark

We know that you have problems. However, please follow up your own questions and topics created by yourself. :(

Create more topics for a similar ptoblem will only cause more confuses to yourself.



***All threads have been merged***

.
29 Oct 2006, 04:35
#20
barco57 avatar

barco57

Totally Zenned

Join Date:
Apr 2006
Posts:
2,841
Plugin Contributions:
0

Re: Someone please help!!

As was alluded to before you are trying to use static images as backgrounds for dynamic side boxes. This will not work that way. I don't have time right now to explain it again but I will take a crack at it tommorrow. But in the mean time please give me a list of the sideboxes you are going to use and the order from top to bottom you want them in.