I am trying to break each section up into blocks like I have on the left, but each time I try and add a new div or anything, it busts up my template real bad like.
I know it is uglier than ape right now. I figure once I get functional worked out, I work on pretty later. This is my first attempt at a skin for phpVMS.
Can anyone tell me how to add extra stuff on the sides in blocks without busting up my template.? If needs be I can take a screen shot of what it looks like busted up and show the code so you know what I am up to.
Also, notice the links for new pilots and such, they are blue and purple. I use web developer in firefox and try to view css info but it says none found. I have tried and tried in my css to add a link class but to no avail so far.
Thanks Tom! Hopefully I get to work on it again tonight for a little bit.
Yeah seperating each item is what I am after. I got it to work, but blocks were everywhere and template busted up badly. I am more than sure it was a div error on my part. ;D
I’ll give that a try and see how it goes. Thanks again.
Ray
Oh and do you know of any good drop down menu scripts anywhere that work good with phpVMS?
Like I said, I have a real good reason to believe that I am mis placing my div statements. I have had this issue before and could never solve it so I had a guy do it for me. That was mistake number 1 on my behalf. :-[
I have been trying and trying and I am not quite sure why or what I am doing wrong.
Are you sure they have no style and are within the left div?
If you have like i quoted earlier, with leftside having the style (float:left; etc) and the sideitem having no style at all, then they should be one under another… Like I have (link in sig)
Looking at your code, you need to be doing it like this:
<div id="content-left">
<div id="leftitem">
Content for one box
</div>
<div id="leftitem">
Content for a second box
</div>
</div>
This is because content-left is your left floated column, so if you have more than one content-left theres going to be more than one left column, so you have to have extra divs within the one column.
Ohhhh ok I got ya now. I’ll take a stab at that one here in a bit. Getting ready to run after some lunch now. I appreciate your replies and help on this one. Thx!
Well, I may just have to leave this be for now. I have tried it a million and one ways and I can not get it. It wont make or break my site, I just kind of like seperate blocks a bit better. I come from using portals on forums so I guess I just got used to it.
I’ll keep trying as I have time and see how things go. Right now I have nothing setup local to test on as Xammp wont run on my pc for some reason.
**EDIT**
Ok I was bent out of shape earlier for a few reasons and gave up on this for today. Sooooo since I just found out I do not have to work tomorrow afterall, I am going to get firebug as suggested and mess with this until I am blue in the face. ;D
I really do appreciate your guys help on this one trying to help me get my site in shape.
If you want 3 even columns then just do a Frontpage in Html first then change it to .tpl. that is how I did my site. some one wrote it in my own thread dealing with this.
So make a new frontpage.html using tables do not edit the frontpage.tpl in the phpvms folder ;D. After you have it done the way you want then change it to frontpage.tpl and up load it to your skins folder.
I will get it adventually. Notice on that site the blocks are not touching each other at all? All it amounts to is my div tags are wrong I am more than sure. ;D