Home | Community | Message Board

NorthSpore.com BOOMR Bag!
This site includes paid links. Please support our sponsors.


Welcome to the Shroomery Message Board! You are experiencing a small sample of what the site has to offer. Please login or register to post messages and view our exclusive members-only content. You'll gain access to additional forums, file attachments, board customizations, encrypted private messages, and much more!

Shop: Kraken Kratom Red Vein Kratom   PhytoExtractum Maeng Da Thai Kratom Leaf Powder   Original Sensible Seeds Autoflowering Cannabis Seeds, Bulk Cannabis Seeds

Jump to first unread post Pages: 1
InvisibleDisco Cat
iS A PoiNdexteR

Registered: 09/15/00
Posts: 2,601
I'm looking for some webpage help
    #5338295 - 02/25/06 03:20 PM (17 years, 11 months ago)

I was expecting to have the website for the Ethno seed ring up by now, but it doesn't seem like the person who said they would make it is really making it. I'm asking if anyone with CSS skills would volunteer to make the site.

http://img528.imageshack.us/img528/2607/indeximage210241iw.jpg
This is what it's supposed to look like, and I have all the image files in photoshop. I also have the necessary sections worked out, and right now just the basics are needed to this thing can be available for people to access. If you'll help pm me or post here, thanks.


Edited by Disco Cat (02/26/06 12:43 PM)


Extras: Filter Print Post Top
Invisibledblaney
Human Being

Registered: 10/03/04
Posts: 7,894
Loc: Here & Now
Re: I'm looking for some webpage help [Re: Disco Cat]
    #5338417 - 02/25/06 04:05 PM (17 years, 11 months ago)

What program would you be creating the pages in?


--------------------
"What is in us that turns a deaf ear to the cries of human suffering?"

"Belief is a beautiful armor
But makes for the heaviest sword"
- John Mayer

Making the noise "penicillin" is no substitute for actually taking penicillin.

"This country, with its institutions, belongs to the people who inhabit it. Whenever they shall grow weary of the existing government, they can exercise their constitutional right of amending it, or their revolutionary right to dismember or overthrow it." -Abraham Lincoln


Extras: Filter Print Post Top
InvisibleDisco Cat
iS A PoiNdexteR

Registered: 09/15/00
Posts: 2,601
Re: I'm looking for some webpage help [Re: dblaney]
    #5338680 - 02/25/06 06:07 PM (17 years, 11 months ago)

That would be up to whoever wanted to make it.


Extras: Filter Print Post Top
OfflineRemainRandom50
Do You Need ToKnow Me?
Registered: 01/15/06
Posts: 1,695
Last seen: 14 years, 9 months
Re: I'm looking for some webpage help [Re: Disco Cat]
    #5338789 - 02/25/06 06:45 PM (17 years, 11 months ago)

not gonna lie, i could do that easily.
but i just dont have the time at all, its so much time consumption.


--------------------
At times I get consumed by my everyday life and will leave the Shroomery. Yet, every time drugs come falling into my life for fun.....I always think about the Shroomery and then I'm back!


Extras: Filter Print Post Top
InvisibleDisco Cat
iS A PoiNdexteR

Registered: 09/15/00
Posts: 2,601
Re: I'm looking for some webpage help [Re: RemainRandom50]
    #5340043 - 02/26/06 02:23 AM (17 years, 11 months ago)

still lookin' for help.


Extras: Filter Print Post Top
InvisibleAbrainspot
Stranger
 User Gallery
Registered: 01/06/06
Posts: 1,500
Loc: Rewind
Re: I'm looking for some webpage help [Re: Disco Cat]
    #5340300 - 02/26/06 08:11 AM (17 years, 10 months ago)

Do you have Microsoft FrontPage, or Macromedia Dreamweaver? Both are very good for web page design, you would be able to put together that with little (or even no) HTML skill. They are programs that can build pages by a "what you see is what you get" type of method; where you place the images and text where you want, and it will build the code for their placement, size, etc.

Id recommend using an IFrame method for that site, where you would have the top banner, and left side menu, and as u clicked the menu buttons, a page will open inside of a rectangular frame to the right of the menu/bellow the banner.

Also, for the buttons you'll need to Map them. Check out IMapper Studio by PatOrJK: http://www.patorjk.com/ goto Software, then IMapper Studios. Youll be able to make each of those menu buttons hyperlinks without cutting them out or cropping the picture in anyway.

I would gladly do the website for you but my comp is on the verge of crashing (my hard drive is corrupt i think) and i have school/work lately, it would take a while to do.


Extras: Filter Print Post Top
Anonymous

Re: I'm looking for some webpage help [Re: Abrainspot]
    #5340889 - 02/26/06 12:32 PM (17 years, 10 months ago)

I may help you out a bit. The link you posted is broken. I am studying CSS as we speak. I was making a site a few days back and decided to move onto the webstandard CSS.


Extras: Filter Print Post Top
InvisibleDisco Cat
iS A PoiNdexteR

Registered: 09/15/00
Posts: 2,601
Re: I'm looking for some webpage help [Re: Anonymous]
    #5340943 - 02/26/06 12:47 PM (17 years, 10 months ago)

Thanks for the info jst31.

Civic, I'd love your help if you've got some time, & I fixed the link above.


Extras: Filter Print Post Top
InvisibleautomanM
blasted chipmunk
 User Gallery

Registered: 09/18/03
Posts: 8,272
Re: I'm looking for some webpage help [Re: Disco Cat]
    #5340977 - 02/26/06 12:57 PM (17 years, 10 months ago)

Code:
/* for Disco Cat*/ 
html, body{
margin:0;
padding:0;
}

#pagewidth{ }

#header{
position:relative;
height:150px;
background-image: url(../images/header.gif);
background-color:#FFFFFF;
width:100%;
}

#leftcol{
width:25%;
float:left;
position:relative;
background-color:#000090;
}

#maincol{
background-image: url(../images/left_column.gif);
background-color: #FFFFFF;
float: right;
display:inline;
position: relative;
width:75%;
}

#footer{
height:65px;
background-image: url(../images/footer.gif);
background-color:#FFFFFF;
clear:both;
}



/* *** Float containers fix *** */
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}

.clearfix{display: inline-table;}

/* Hides from IE-mac \*/
* html .clearfix{height: 1%;}
.clearfix{display: block;}
/* End hide from IE-mac */



/*printer styles*/
@media print{
/*hide the left column when printing*/
#leftcol{display:none;}
#twocols, #maincol{width:100%; float:none;}
}



try that. should be HTML 4.0 Strict compiant. save that link to the pic in 3 images: header, footer, and left_column. map the images with whatever links you want. hope that helps.


--------------------
No, no, you're not thinking, you're just being logical. ~ Niels Bohr


Extras: Filter Print Post Top
InvisibleautomanM
blasted chipmunk
 User Gallery

Registered: 09/18/03
Posts: 8,272
Re: I'm looking for some webpage help [Re: automan]
    #5341498 - 02/26/06 03:32 PM (17 years, 10 months ago)

i found a mistake i made. move:

background-image: url(../images/left_column.gif);

from maincol to leftcol



also, be sure to make the pixel height in your images the same as what i put here.


--------------------
No, no, you're not thinking, you're just being logical. ~ Niels Bohr


Extras: Filter Print Post Top
InvisibleDisco Cat
iS A PoiNdexteR

Registered: 09/15/00
Posts: 2,601
Re: I'm looking for some webpage help [Re: automan]
    #5342855 - 02/26/06 08:38 PM (17 years, 10 months ago)

Thanks again automan,
when I tried using your script I got a white page with all the data written on it. I clearly don't know what I'm doing. :blush:

I don't know if this is a difficult request, but I added a scrollbar into the image of the page (that's that floating blue/red ball) and wonder if you can add it in. Either way, I'm totally thankful for the work you've done :smile:

I'll also make the image files available in case you or anyone else can make them work for me, not because I'm lazy, but because I tried and the results weren't right and I don't know how quickly I can figure this out.Files are here.


Extras: Filter Print Post Top
InvisibleautomanM
blasted chipmunk
 User Gallery

Registered: 09/18/03
Posts: 8,272
Re: I'm looking for some webpage help [Re: Disco Cat]
    #5344160 - 02/27/06 04:07 AM (17 years, 10 months ago)

i would be happy to build your page for you, but i am pretty busy with other web design right now. i just threw together the css because it really isnt a time consuming task if you are used to doing them. i could set aside a day to do it for you, but i get paid for my work. i would be more thna happy to give you a special rate since i support what you are trying to do and because you have been a shroomery member for such a long time. let me know if you are interested.


--------------------
No, no, you're not thinking, you're just being logical. ~ Niels Bohr


Extras: Filter Print Post Top
InvisibleDisco Cat
iS A PoiNdexteR

Registered: 09/15/00
Posts: 2,601
Re: I'm looking for some webpage help [Re: automan]
    #5345216 - 02/27/06 12:56 PM (17 years, 10 months ago)

I appreciate the offer even though I can't spare any money right now, but thanks for what you did for myself and llama. We'll send you some seeds of thanks if there's any you want once we're rolling and give you a cuttings pass  :thumbup:


Extras: Filter Print Post Top
Jump to top Pages: 1

Shop: Kraken Kratom Red Vein Kratom   PhytoExtractum Maeng Da Thai Kratom Leaf Powder   Original Sensible Seeds Autoflowering Cannabis Seeds, Bulk Cannabis Seeds


Similar ThreadsPosterViewsRepliesLast post
* How do you make images not be images on webpages? JunkFood 1,179 15 04/21/07 03:20 PM
by Ythan
* webpage email hostign + PC?? the man 937 5 03/15/07 05:00 PM
by the man
* Shroomery background CSS? Chemical Addiction 878 2 07/05/14 06:40 AM
by Chemical Addiction
* Long string of B's in the top of some webpages Gumby 1,122 10 10/24/07 10:59 AM
by Gumby
* Sounds on Webpages TinMan 725 6 04/09/03 09:05 PM
by TinMan
* Evasive content on webpages JunkFood 586 3 06/24/07 11:16 PM
by JunkFood
* Good freeware html (webpage making) software? zee_werp 1,256 8 02/14/07 03:41 AM
by zee_werp
* How do you erase backgrounds with Photoshop? HagbardCeline 672 1 06/28/04 10:57 PM
by Suffer

Extra information
You cannot start new topics / You cannot reply to topics
HTML is disabled / BBCode is enabled
Moderator: trendal, automan, Northerner
758 topic views. 0 members, 0 guests and 9 web crawlers are browsing this forum.
[ Show Images Only | Sort by Score | Print Topic ]
Search this thread:

Copyright 1997-2024 Mind Media. Some rights reserved.

Generated in 0.025 seconds spending 0.007 seconds on 14 queries.