Forum FAQForum FAQSearchSearch MemberlistMemberlist Forum ignore listForum ignore list RegisterRegister ProfileProfile Log in to check your private messagesLog in to check your private messages Log inLog in
Tableless dizajn, prvi put

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Client-side
View previous topic :: View next topic  
Author Message
croatius



Joined: 02 Oct 2007
Posts: 34
Location: pumpaona

PostPosted: 07.10.2007 20:03    Post subject: Tableless dizajn, prvi put Add user to your forum ignore list Reply with quote

Evo slozio sam prvi put tableless stranicu s div/css i dobro bi mi doslo malo savjeta.
Dali je tocno strukturirano?
Kako poboljsati?
Greske?

http://pastebin.com/mce3645a HTML
http://pastebin.com/ma122ced CSS


Last edited by croatius on 07.10.2007 21:35; edited 1 time in total
Back to top
View user's profile Send private message Visit poster's website
nel`chee



Joined: 08 Jul 2004
Posts: 2087
Location: Rijeka

PostPosted: 07.10.2007 20:09    Post subject: Add user to your forum ignore list Reply with quote

uploadaj normalnu stranicu negdje, nismo svi Neo da možemo vizualizirati točno kako izgleda gledajući kod.

_________________
art & design portfoliofree Photoshop brushes stuffsketchblogfacebook
Back to top
View user's profile Send private message Visit poster's website Twitter profile
monkey



Joined: 20 Dec 2004
Posts: 856
Location: VG - ZG

PostPosted: 07.10.2007 20:41    Post subject: Add user to your forum ignore list Reply with quote

nel`chee wrote:
uploadaj normalnu stranicu negdje, nismo svi Neo da možemo vizualizirati točno kako izgleda gledajući kod.


Laughing Laughing

Yup složio bih se.

_________________
mojinstruktor.com - sve instrukcije na jednome mjestu
trazilo.com - potražite dnevnu dozu inspiracije
Back to top
View user's profile Send private message Send e-mail Visit poster's website MSN Messenger Twitter profile
Jay-S
Guest





PostPosted: 07.10.2007 20:55    Post subject: Reply with quote

ja vec vidim da boluje od divitisa Cool
Back to top
croatius



Joined: 02 Oct 2007
Posts: 34
Location: pumpaona

PostPosted: 07.10.2007 21:32    Post subject: Add user to your forum ignore list Reply with quote



sorry, trenutno je local Smile
Back to top
View user's profile Send private message Visit poster's website
Jay-S
Guest





PostPosted: 07.10.2007 21:45    Post subject: Reply with quote

ajme, pa daj site uplodan na internet (ftp), ne sliku... cccc Very Happy
Back to top
croatius



Joined: 02 Oct 2007
Posts: 34
Location: pumpaona

PostPosted: 07.10.2007 22:19    Post subject: Add user to your forum ignore list Reply with quote

Jos sam daleko od stavljanja dizajna na forum kritiziranje. Trenutno me zanimaju vasa misljenja html i css kodu.
Back to top
View user's profile Send private message Visit poster's website
Moebius



Joined: 26 Jan 2004
Posts: 245
Location: zagreb

PostPosted: 07.10.2007 22:51    Post subject: Add user to your forum ignore list Reply with quote

Umjesto ovog:
Code:
<div class="boxlink">
<a href="#cms">CMS Login</a><br />
<a href="#">Valid XHTML</a><br />
<a href="#">Kontakt</a><br />
</div>


pokusaj recimo ovako:
Code:
<div class="boxlink">
<p><a href="#cms">CMS Login</a></p>
<p><a href="#">Valid XHTML</a></p>
<p><a href="#">Kontakt</a></p>
</div>


ili ovako:
Code:
<div class="boxlink">
<ul>
<li><a href="#cms">CMS Login</a></li>
<li><a href="#">Valid XHTML</a></li>
<li><a href="#">Kontakt</a></li>
</ul>
</div>


daje ti vise slobode kod kontrole ispisa u odnosu na BR tag koji nije nista drugo doli prelaz u novi red.
Ovako mozes dograditi CSS za varijantu s paragrafima npr.:

Code:
.boxlink p
{
    padding-bottom: 10px;
}


i imas potpunu kontrolu nad razmakom izmedju pojedinih stavki, linkova u tvojem slucaju, samo primjera radi.
Back to top
View user's profile Send private message Visit poster's website
croatius



Joined: 02 Oct 2007
Posts: 34
Location: pumpaona

PostPosted: 07.10.2007 23:06    Post subject: Add user to your forum ignore list Reply with quote

Hvala Moebius, vec promijenjeno Smile
Back to top
View user's profile Send private message Visit poster's website
libero



Joined: 04 Oct 2007
Posts: 115

PostPosted: 08.10.2007 00:05    Post subject: Add user to your forum ignore list Reply with quote

poanat tableless-a nije da

tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td tr td

zamijeniš sa

div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div div

ali thumbsup for trying
Back to top
View user's profile Send private message Send e-mail Visit poster's website
strija



Joined: 14 Sep 2003
Posts: 473
Location: Čakovec

PostPosted: 08.10.2007 00:09    Post subject: Add user to your forum ignore list Reply with quote

Nije dobro strukturirano. Za headlineove su <h1>, <h2>, <h3>..., za paragrafe <p>. Ako imas neku listu linkova uzimas <ul>. Uglavnom previse divova i class-a Smile

_________________
We can exist in ambiguity, but it means the deepest loneliness. | creolab.hr | thefarewellreason.com
Back to top
View user's profile Send private message Visit poster's website
keye



Joined: 24 Nov 2003
Posts: 2465
Location: Paris - France

PostPosted: 08.10.2007 11:05    Post subject: Add user to your forum ignore list Reply with quote

ja bi koji ID ako moze....

tvoj html mi lici na nas backoffice, svaki dan proklinjemo tipa koji ga je napravio pa otisao iz firme Laughing

_________________
Google is a blind person
Back to top
View user's profile Send private message Visit poster's website
croatius



Joined: 02 Oct 2007
Posts: 34
Location: pumpaona

PostPosted: 08.10.2007 23:48    Post subject: Add user to your forum ignore list Reply with quote

hehe hvala svima, idem se malo truditi.. Smile
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Client-side All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group