Problem mit News Modul

Begonnen von Seifenblasenrenner, 25 Januar 2007, 20:40:01

⏪ vorheriges - nächstes ⏩

0 Mitglieder und 1 Gast betrachten dieses Thema.

Seifenblasenrenner

Hallo, liebe Leute ich weis nicht ob das in diesem Forum reingehört, wenn nein bitte ich um Entschuldigung.

Zu Meiner Frage: Ich sitze nun seit 2Tagen fast rund um die Uhr, wie ein bekloppter an diesem News Modul.

screenshot17lr.jpg
Original Link

Und zwar wie man am Screenshot sehen kann ist die Seite wo die News steht viel zu breit und sprengt das Design. Wie kann ich das so anpassen wie Rot markiert auf dem Screenshot?

Ich bedanke mich im Voraus Herzlichst für Eure Bemühungen. Und wünsche einen angenehmen Abend.

Mit Freundlichen Grüßen
Markus Rizgarî

bajazzo

ich hab mir kurz dein html code angeguckt und in der Zeile ca. 202 fand ich:
<table border="0" cellpadding="0" cellspacing="0" bgcolor="#ffffff" width="956">
das musste in der article.php irgendwo sein bei der Ausgabe, suche nach 956 und mach aus 956 z.B. 100%
Genie ist die grenzenlose Bereitschaft, sich Mühe zu geben.

Seifenblasenrenner

Vielen Dank für deine Schnelle Antwort ich bin höchst dankbar.

Also in article.php ist folgendes drinne aber kein "956".


Zitat
<?php
/**
* pragmaMx  Content Management System
* Copyright (c) 2005 pragmaMx Dev Team - http://pragmamx.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* $Source: /home/www/dps3311/home/cvsroot/pragmamx/html/modules/News/article.php,v $
* $Revision: 1.5.4.1 $
* $Author: tora60 $
* $Date: 2006/11/05 14:38:08 $
*
* this file based on:
* php-nuke Web Portal System - http://phpnuke.org/
* Thatware - http://thatware.org/
*/

if (!defined("mxMainFileLoaded")) die ("You can't access this file directly...");

$index = 1;

$module_name = basename(dirname(__FILE__));
mxGetLangfile($module_name);
include_once("includes/mxNewsFunctions.php");

if (empty($op)) $op = "";
if (empty($mode)) $mode = "";
if (isset($sid)) $sid = intval($sid);

if (empty($sid)) { # # && !isset($tid)
    Header("Location: modules.php?name=" . $module_name . "");
}

if ($op == "Reply") {
    Header("Location: modules.php?name=" . $module_name . "&file=comments&op=Reply&pid=0&sid=$sid");
}

$qry = "SELECT s.*,
            s.sid AS s_sid,
            c.title AS cattitle,
            t.topicname,
            t.topicimage,
            t.topictext
            FROM (${prefix}_stories AS s
            LEFT JOIN ${prefix}_stories_cat AS c ON s.catid = c.catid)
            LEFT JOIN ${prefix}_topics AS t ON s.topic = t.topicid
            WHERE s.sid=" . $sid . " AND s.time <= now();";

$result = sql_query($qry);
$story = sql_fetch_assoc($result);
if (empty($story["aid"])) {
    Header("Location: modules.php?name=" . $module_name . "");
}

sql_query("UPDATE ${prefix}_stories SET counter=counter+1 where sid=" . $sid . "");

$artpage = 1;

$story["datetime"] = formatTimestamp($story["time"]);
$story["informant"] = (empty($story["informant"])) ? $GLOBALS['anonymous'] : $story["informant"];
$story["completetext"] = (empty($story["bodytext"])) ? "" . $story["hometext"] . "" . $story["notes"] . "" : "" . $story["hometext"] . "<br><br>" . $story["bodytext"] . "" . $story["notes"] . "";
$story['allmorelink'] = vkpGetMoreLink($story);

$story["title_formated"] = $story["title"];
if (!empty($story["catid"])) {
    $story["title_formated"] = "<a href=\"modules.php?name=" . $module_name . "&amp;file=categories&amp;catid=" . $story["catid"] . "\"><span class=\"storycat\">" . $story["cattitle"] . "</span></a>: " . $story["title"] . "";
}
// // das Array, welches in den News-Bloecken abgefragt wird !!
$GLOBALS['story_blocks'] = $story;

$pagetitle = $story["title"];
include("header.php");
themearticle($story["aid"], $story["informant"], $story["datetime"], $story["title_formated"], $story["completetext"], $story["topic"], $story["topicname"], $story["topicimage"], $story["topictext"], $story);
if ((($mode != "nocomments") && ($story["acomm"] == 0)) && ($articlecomm == 1)) { // // Achtung!!! acomm: 0 = Ja , 1 = Nein
    include_once("modules/" . $module_name . "/comments.php");
}
include ("footer.php");

?>

bajazzo

natürlich nicht, sorry mein fehler - eines denken anderes schreiben :red:
es muss in der theme sein, ich wurde als erstes in der theme.html suchen, das ist aber mit Sicherheit das Problem. Ich hab mir local dein html gespeichert und das geändert, und siehe hier

[gelöscht durch Administrator]
Genie ist die grenzenlose Bereitschaft, sich Mühe zu geben.

Seifenblasenrenner

 :smile: :smile: :smile:Vielen Vielen Dank. Es hat geklappt Ich sende ihnen meinen Respekt und einen Herzlichen Dankeschön. :thumbup: :thumbup: :thumbup: