Webspell Problem :(

Dieses Thema im Forum "Webentwicklung" wurde erstellt von Manson, 22. Januar 2007 .

Schlagworte:
Status des Themas:
Es sind keine weiteren Antworten möglich.
  1. 22. Januar 2007
    Hi Leute ich hab da son kleines Problem mit webspell...

    und zwar hab ich nen design an webspell angepasst und es läuf auch alles aber leider übernehmen die einzelnen teile wie zB. loginarea usw. nicht die von mir angegebene schriftart und -größe....

    das ganze hab ich euch hier mal abgespeckt vorbereitet:

    [ http://tobsta.userbar-forum.de/ ]

    da seht ihr das im loginbereich die standardschrift angezeigt wird obwohl ich in admin menu

    folgendes eingestellt hab:

    jetzt brauche ich eure hilfe damit ich die schriftart endlich im adminbereich editieren kann
    hab schon versucht über die seiteneigenschaft die schrift zu ändern! das funktionier auch nur leider is es nich das was ich haben will

    außerdem hab ich grad gemerkr das auch nich die buttons (im bsp. der loginbutton) von webspell verwendet werden

    also danke für eure hilfe schonmal

    für jede hilfe gibts ne bewertung!
     
  2. 22. Januar 2007
    AW: Webspell Problem

    Überall bei "a, a:visited, a:active" etc. sowas zufügen:
    PHP:
    font - family Verdana Arial Helvetica sans - serif ;
    font - size 12px
     
  3. 22. Januar 2007
    AW: Webspell Problem


    danke aber bringt leider nix

    Ich hab das Gefühl das liegt nur an den Seiteneigenschaften aber wei mach ich das weg? Ich mein die Textfarbe, -größe, etc.... sehen so aus wie es in den Seiteneigenschaften der index.php steht

    kann das vllt an den einstellungen von meinem dreamweaver liegen?
     
  4. 22. Januar 2007
    AW: Webspell Problem

    Ich kenn mich zwar kein Stück mit Webspell aus, aber ich kann dir sagen (ist mir gerade ins Auge gesprungen) du musst die CSS auch einbinden.

    Entweder hast du eine externe CSS Datein, dann musst du zwischen <head> und </head> folgendes schreiben:
    PHP:
    < link rel = "stylesheet"  type = "text/css"
      
    href = "HIER_DER_PFAD/DEINE_DATEI.CSS" >
    oder du fügst sie Intern ein indem du die folgendes zwischen <head> und </head> schreibst (wichtig dabei das <style type="text/css"> am Anfang und </style> am Ende der CSS Angaben):
    PHP:
    < style type = "text/css" >
     
    body  {
    font - family Verdana Arial Helvetica sans - serif ;
    font - size 10px ;

    scrollbar - base - color : #cccccc;
    scrollbar - 3dlight - color : #333333;
    scrollbar - arrow - color : #333333;
    scrollbar - darkshadow - color : #333333;
    scrollbar - face - color : #cccccc;
    scrollbar - highlight - color #cccccc;
    scrollbar - shadow - color : #cccccc;
    scrollbar - track - color : #cccccc;
    }

    table  {
    font - family Verdana Arial Helvetica sans - serif ;
    font - size 10px ;
    color #000000;
    }
    h2  {
    font - family Verdana Arial Helvetica sans - serif ;
    font - size 12px ;
    color #000000;
    text - transform uppercase ;
    font - weight bold ;
    }

    .
    small  {
    font - family Verdana Arial Helvetica sans - serif ;
    font - size 9px ;
    color #000000;
    }

    .
    title  {
    font - family Verdana Arial Helvetica sans - serif ;
    font - size 11px ;
    color #000000;
    font - weight bold ;
    background - image url ( images / title_bg . gif );
    background - repeat repeat ;
    background - position left top ;
    }

    .
    category_big  {
    font - family Verdana Arial Helvetica sans - serif ;
    font - size 12px ;
    color #000000;
    font - weight bold ;
    }

    .
    category  {
    font - family Verdana Arial Helvetica sans - serif ;
    font - size 11px ;
    color #000000;
    font - weight normal ;
    }

    .
    marked  {
    background - color #000000;
    font - weight bold ;
    }

    a a : visited a : active  {
    color #333333;
    text - decoration none ;
    font - weight normal ;
    }

    a : hover  {
    color #000000;
    text - decoration underline ;
    font - weight normal ;
    }

    a . titlelink a . titlelink : visited a . titlelink : active  {
    color #333333;
    text - decoration none ;
    font - weight bold ;
    }

    a . titlelink : hover  {
    color #000000;
    text - decoration underline ;
    font - weight bold ;
    }

    a . category a . category : visited a . category : active  {
    color #333333;
    text - decoration none ;
    }

    a . category : hover  {
    color #000000;
    text - decoration underline ;
    }

    option textarea input select file  {
    font - family Verdana Arial Helvetica sans - serif ;
    font - size 10px ;
    color #000000;
    background - color #FFFFFF;
    border 1px solid  #333333;
    }

    .
    footer  { color #FFFFFF
    size 10px
    }

    .
    form_off  {
    color #666666;
    background - color #DCDCDC;
    border 1px solid  #666666;
    }

    .
    form_on  {
    color #000000;
    background - color #EEEEEE;
    border 1px solid  #000000;
    }

    .
    form_username  {
    background - color #eeeeee;
    border 1px solid  #333333;
    background - image url ( images / username . gif );
    background - repeat no - repeat ;
    background - position left top ;
    }

    .
    form_password  {
    background - color #eeeeee;
    border 1px solid  #333333;
    background - image url ( images / password . gif );
    background - repeat no - repeat ;
    background - position left top ;
    }

    .
    form_name  {
    background - color #eeeeee;
    border 1px solid  #333333;
    background - image url ( images / name . gif );
    background - repeat no - repeat ;
    background - position left top ;
    }

    .
    form_text  {
    background - color #eeeeee;
    border 1px solid  #333333;
    background - image url ( images / message . gif );
    background - repeat no - repeat ;
    background - position left top ;
    }

    .
    input  {
    background - color transparent ;
    border 1px none ;
    margin - top 0px ;
    margin - bottom 0px ;
    }

    </
    style >


    Zum nachlesen:
    http://faq.bubax.net/index.php?content=intern
    http://faq.bubax.net/index.php?content=intern
     
  5. 22. Januar 2007
    AW: Webspell Problem

    MAN BIN ICH BESCHEUERT^^

    lag echt am einbinden der CSS

    das fehle mir im head bereich :|

    naja danke für deine hilfe bw is raus
     
  6. Video Script

    Videos zum Themenbereich

    * gefundene Videos auf YouTube, anhand der Überschrift.