Foros del Web » Creando para Internet » Sistemas de gestión de contenidos »

ajustar foro al diseño de mi web

Estas en el tema de ajustar foro al diseño de mi web en el foro de Sistemas de gestión de contenidos en Foros del Web. hola amigos he estado probando en mi servidor local algunos foros como phpbb, mybb entre otros, pero no encuentro la forma de que en el ...
  #1 (permalink)  
Antiguo 03/10/2008, 09:58
 
Fecha de Ingreso: febrero-2008
Ubicación: Panamá
Mensajes: 145
Antigüedad: 16 años, 1 mes
Puntos: 0
ajustar foro al diseño de mi web

hola amigos

he estado probando en mi servidor local algunos foros como phpbb, mybb entre otros, pero no encuentro la forma de que en el foro aparezca el encabezado de mi pagina web y que el foro se ajuste tambien al tamaño del diseño principal.

a ver si alguien sabe como hacerlo.

me gustaria saber si se puede hacer o estos foros tiene que quedar justo como vienen.

agradezco su ayuda y consejos.
  #2 (permalink)  
Antiguo 04/10/2008, 07:47
Avatar de Nekko
Colaborador
 
Fecha de Ingreso: marzo-2008
Ubicación: Buenos Aires
Mensajes: 3.141
Antigüedad: 16 años, 1 mes
Puntos: 656
Respuesta: ajustar foro al diseño de mi web

Depende de la plataforma que uses para web y foro, generalmente se puede hacer que el header sea el mismo, solo que tenés que ubicarlo en cada uno y reformarlo.

Serviría mas que nos digas que sistemas usas.
__________________
Taller para crear themes wordpress desde cero | Presupuestos para trabajos particulares vía MP
  #3 (permalink)  
Antiguo 06/10/2008, 13:38
 
Fecha de Ingreso: febrero-2008
Ubicación: Panamá
Mensajes: 145
Antigüedad: 16 años, 1 mes
Puntos: 0
Respuesta: ajustar foro al diseño de mi web

Hola Nekko no entiendo muy bien lo que me preguntas,

te puedo decir que estoy usando el servidor local Appserv 2.5.9 y he instalado phpBB3,windows xp pro.

web browsers IE y Mozilla firefox, no se que mas necesitas saber para responder ???
  #4 (permalink)  
Antiguo 06/10/2008, 14:34
Avatar de Nekko
Colaborador
 
Fecha de Ingreso: marzo-2008
Ubicación: Buenos Aires
Mensajes: 3.141
Antigüedad: 16 años, 1 mes
Puntos: 656
Respuesta: ajustar foro al diseño de mi web

La aplicación que usas para el foro, entonces, es phpbb3. Faltaría saber como trabajaste tu website, si es una prefabricada o bien la hiciste vos mismo. Podés pasarnos tu URL acá para que te ayudemos mejor.

Personalmente no sé como se maneja phpbb3, pero siempre tenes alguna plantilla tipo header.php o header.tpl que podés reformar con cuidado para que quede igual que en tu web.
__________________
Taller para crear themes wordpress desde cero | Presupuestos para trabajos particulares vía MP
  #5 (permalink)  
Antiguo 07/10/2008, 12:47
 
Fecha de Ingreso: febrero-2008
Ubicación: Panamá
Mensajes: 145
Antigüedad: 16 años, 1 mes
Puntos: 0
Respuesta: ajustar foro al diseño de mi web

hola Nekko

bueno aqui te dejo el index del foro phpbb3 que realmente no lo entiendo, ya logre cambiarle la imagen de phpbb por la mi sitio, pero ahora quiero agrandar la imagen y eso no lo encuentro por ningun lado, porque los codigos son un poco complicados para mi.

ya llevo un par de días con esto y me duela la cabeza porque no he hecho nada.
agradezco su tiempo y consejos

aqui te dejo el codigo.
index.php
Código PHP:
<?php
/**
*
* @package phpBB3
* @version $Id: index.php 8638 2008-06-09 17:11:26Z acydburn $
* @copyright (c) 2005 phpBB Group
* @license [url]http://opensource.org/licenses/gpl-license.php[/url] GNU Public License
*
*/

/**
*/

/**
* @ignore
*/
define('IN_PHPBB'true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH './';
$phpEx substr(strrchr(__FILE__'.'), 1);
include(
$phpbb_root_path 'common.' $phpEx);
include(
$phpbb_root_path 'includes/functions_display.' $phpEx);

// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup('viewforum');

display_forums(''$config['load_moderators']);

// Set some stats, get posts count from forums data if we... hum... retrieve all forums data
$total_posts    $config['num_posts'];
$total_topics    $config['num_topics'];
$total_users    $config['num_users'];

$l_total_user_s = ($total_users == 0) ? 'TOTAL_USERS_ZERO' 'TOTAL_USERS_OTHER';
$l_total_post_s = ($total_posts == 0) ? 'TOTAL_POSTS_ZERO' 'TOTAL_POSTS_OTHER';
$l_total_topic_s = ($total_topics == 0) ? 'TOTAL_TOPICS_ZERO' 'TOTAL_TOPICS_OTHER';

// Grab group details for legend display
if ($auth->acl_gets('a_group''a_groupadd''a_groupdel'))
{
    
$sql 'SELECT group_id, group_name, group_colour, group_type
        FROM ' 
GROUPS_TABLE '
        WHERE group_legend = 1
        ORDER BY group_name ASC'
;
}
else
{
    
$sql 'SELECT g.group_id, g.group_name, g.group_colour, g.group_type
        FROM ' 
GROUPS_TABLE ' g
        LEFT JOIN ' 
USER_GROUP_TABLE ' ug
            ON (
                g.group_id = ug.group_id
                AND ug.user_id = ' 
$user->data['user_id'] . '
                AND ug.user_pending = 0
            )
        WHERE g.group_legend = 1
            AND (g.group_type <> ' 
GROUP_HIDDEN ' OR ug.user_id = ' $user->data['user_id'] . ')
        ORDER BY g.group_name ASC'
;
}
$result $db->sql_query($sql);

$legend '';
while (
$row $db->sql_fetchrow($result))
{
    
$colour_text = ($row['group_colour']) ? ' style="color:#' $row['group_colour'] . '"' '';

    if (
$row['group_name'] == 'BOTS')
    {
        
$legend .= (($legend != '') ? ', ' '') . '<span' $colour_text '>' $user->lang['G_BOTS'] . '</span>';
    }
    else
    {
        
$legend .= (($legend != '') ? ', ' '') . '<a' $colour_text ' href="' append_sid("{$phpbb_root_path}memberlist.$phpEx"'mode=group&amp;g=' $row['group_id']) . '">' . (($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' $row['group_name']] : $row['group_name']) . '</a>';
    }
}
$db->sql_freeresult($result);

// Generate birthday list if required ...
$birthday_list '';
if (
$config['load_birthdays'] && $config['allow_birthdays'])
{
    
$now getdate(time() + $user->timezone $user->dst date('Z'));
    
$sql 'SELECT user_id, username, user_colour, user_birthday
        FROM ' 
USERS_TABLE "
        WHERE user_birthday LIKE '" 
$db->sql_escape(sprintf('%2d-%2d-'$now['mday'], $now['mon'])) . "%'
            AND user_type IN (" 
USER_NORMAL ', ' USER_FOUNDER ')';
    
$result $db->sql_query($sql);

    while (
$row $db->sql_fetchrow($result))
    {
        
$birthday_list .= (($birthday_list != '') ? ', ' '') . get_username_string('full'$row['user_id'], $row['username'], $row['user_colour']);

        if (
$age = (int) substr($row['user_birthday'], -4))
        {
            
$birthday_list .= ' (' . ($now['year'] - $age) . ')';
        }
    }
    
$db->sql_freeresult($result);
}

// Assign index specific vars
$template->assign_vars(array(
    
'TOTAL_POSTS'    => sprintf($user->lang[$l_total_post_s], $total_posts),
    
'TOTAL_TOPICS'    => sprintf($user->lang[$l_total_topic_s], $total_topics),
    
'TOTAL_USERS'    => sprintf($user->lang[$l_total_user_s], $total_users),
    
'NEWEST_USER'    => sprintf($user->lang['NEWEST_USER'], get_username_string('full'$config['newest_user_id'], $config['newest_username'], $config['newest_user_colour'])),

    
'LEGEND'        => $legend,
    
'BIRTHDAY_LIST'    => $birthday_list,

    
'FORUM_IMG'                => $user->img('forum_read''NO_NEW_POSTS'),
    
'FORUM_NEW_IMG'            => $user->img('forum_unread''NEW_POSTS'),
    
'FORUM_LOCKED_IMG'        => $user->img('forum_read_locked''NO_NEW_POSTS_LOCKED'),
    
'FORUM_NEW_LOCKED_IMG'    => $user->img('forum_unread_locked''NO_NEW_POSTS_LOCKED'),

    
'S_LOGIN_ACTION'            => append_sid("{$phpbb_root_path}ucp.$phpEx"'mode=login'),
    
'S_DISPLAY_BIRTHDAY_LIST'    => ($config['load_birthdays']) ? true false,

    
'U_MARK_FORUMS'        => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}index.$phpEx"'mark=forums') : '',
    
'U_MCP'                => ($auth->acl_get('m_') || $auth->acl_getf_global('m_')) ? append_sid("{$phpbb_root_path}mcp.$phpEx"'i=main&amp;mode=front'true$user->session_id) : '')
);

// Output page
page_header($user->lang['INDEX']);

$template->set_filenames(array(
    
'body' => 'index_body.html')
);

page_footer();

?>
aca te dejo el contenido de index_body.html, porque veo que al final del code php se llama a este archivo.

index_body.html

Código HTML:
<!-- INCLUDE overall_header.html -->

<p class="{S_CONTENT_FLOW_END}<!-- IF S_USER_LOGGED_IN --> rightside<!-- ENDIF -->"><!-- IF S_USER_LOGGED_IN -->{LAST_VISIT_DATE}<!-- ELSE -->{CURRENT_TIME}<!-- ENDIF --></p>
<!-- IF U_MCP --><p>{CURRENT_TIME} <br />[&nbsp;<a href="{U_MCP}">{L_MCP}</a>&nbsp;]</p><!-- ELSEIF S_USER_LOGGED_IN --><p>{CURRENT_TIME}</p><!-- ENDIF -->

<!-- IF S_DISPLAY_SEARCH or (S_USER_LOGGED_IN and not S_IS_BOT) -->
<ul class="linklist">
	<!-- IF S_DISPLAY_SEARCH -->
		<li><a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a><!-- IF S_USER_LOGGED_IN --> &bull; <a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><!-- ENDIF --> &bull; <a href="{U_SEARCH_ACTIVE_TOPICS}">{L_SEARCH_ACTIVE_TOPICS}</a></li>
	<!-- ENDIF -->
	<!-- IF not S_IS_BOT and U_MARK_FORUMS --><li class="rightside"><a href="{U_MARK_FORUMS}" accesskey="m">{L_MARK_FORUMS_READ}</a></li><!-- ENDIF -->
</ul>
<!-- ENDIF -->

<!-- INCLUDE forumlist_body.html -->

<!-- IF not S_USER_LOGGED_IN and not S_IS_BOT -->
	<form method="post" action="{S_LOGIN_ACTION}" class="headerspace">
	<h3><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a><!-- IF S_REGISTER_ENABLED -->&nbsp; &bull; &nbsp;<a href="{U_REGISTER}">{L_REGISTER}</a><!-- ENDIF --></h3>
		<fieldset class="quick-login">
			<label for="username">{L_USERNAME}:</label>&nbsp;<input type="text" name="username" id="username" size="10" class="inputbox" title="{L_USERNAME}" />  
			<label for="password">{L_PASSWORD}:</label>&nbsp;<input type="password" name="password" id="password" size="10" class="inputbox" title="{L_PASSWORD}" />
			<!-- IF S_AUTOLOGIN_ENABLED -->
				| <label for="autologin">{L_LOG_ME_IN} <input type="checkbox" name="autologin" id="autologin" /></label>
			<!-- ENDIF -->
			<input type="submit" name="login" value="{L_LOGIN}" class="button2" />
		</fieldset>
	</form>
<!-- ENDIF -->

<!-- IF S_DISPLAY_ONLINE_LIST -->
	<!-- IF U_VIEWONLINE --><h3><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></h3><!-- ELSE --><h3>{L_WHO_IS_ONLINE}</h3><!-- ENDIF -->
	<p>{TOTAL_USERS_ONLINE} ({L_ONLINE_EXPLAIN})<br />{RECORD_USERS}<br /> <br />{LOGGED_IN_USER_LIST}
	<!-- IF LEGEND --><br /><em>{L_LEGEND}: {LEGEND}</em><!-- ENDIF --></p>
<!-- ENDIF -->

<!-- IF S_DISPLAY_BIRTHDAY_LIST and BIRTHDAY_LIST -->
	<h3>{L_BIRTHDAYS}</h3>
	<p><!-- IF BIRTHDAY_LIST -->{L_CONGRATULATIONS}: <strong>{BIRTHDAY_LIST}</strong><!-- ELSE -->{L_NO_BIRTHDAYS}<!-- ENDIF --></p>
<!-- ENDIF -->

<!-- IF NEWEST_USER -->
	<h3>{L_STATISTICS}</h3>
	<p>{TOTAL_POSTS} &bull; {TOTAL_TOPICS} &bull; {TOTAL_USERS} &bull; {NEWEST_USER}</p>
<!-- ENDIF -->

<!-- INCLUDE overall_footer.html --> 

Última edición por AlvaroG; 08/10/2008 a las 07:04 Razón: corregir resaltado de sintaxis
  #6 (permalink)  
Antiguo 08/10/2008, 21:30
Avatar de Nekko
Colaborador
 
Fecha de Ingreso: marzo-2008
Ubicación: Buenos Aires
Mensajes: 3.141
Antigüedad: 16 años, 1 mes
Puntos: 656
Respuesta: ajustar foro al diseño de mi web

Entiendo que en realidad este es el que vos necesitás modificar
overall_header.html

Creo que este thread debería moverse a la sección phpbb, pero básicamente lo que debés buscar es dentro del archivo en donde defina el header, las dimensiones que le da. Generalmente la imagen está dentro de una clase css, por lo que al ir a tu css (quizas sea algo asi como style.css) deberás buscar la clase del logo y darle las medidas que necesites.

Reitero, necesitarás ayuda de algun colega administrador de phpbb.
__________________
Taller para crear themes wordpress desde cero | Presupuestos para trabajos particulares vía MP
  #7 (permalink)  
Antiguo 09/10/2008, 17:02
 
Fecha de Ingreso: febrero-2008
Ubicación: Panamá
Mensajes: 145
Antigüedad: 16 años, 1 mes
Puntos: 0
Respuesta: ajustar foro al diseño de mi web

HOla Nekko

si eso es lo que he he hecho pero no me cambia nada.

te voy a poner el archivo
overall_header.html
Cita:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">
<head>

<meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
<meta http-equiv="content-style-type" content="text/css" />
<meta http-equiv="content-language" content="{S_USER_LANG}" />
<meta http-equiv="imagetoolbar" content="no" />
<meta name="resource-type" content="document" />
<meta name="distribution" content="global" />
<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />
<meta name="keywords" content="" />
<meta name="description" content="" />
{META}
<title>{SITENAME} &bull; <!-- IF S_IN_MCP -->{L_MCP} &bull; <!-- ELSEIF S_IN_UCP -->{L_UCP} &bull; <!-- ENDIF -->{PAGE_TITLE}</title>

<!--
phpBB style name: prosilver
Based on style: prosilver (this is the default phpBB3 style)
Original author: Tom Beddard ( http://www.subBlue.com/ )
Modified by:

NOTE: This page was generated by phpBB, the free open-source bulletin board package.
The phpBB Group is not responsible for the content of this page and forum. For more information
about phpBB please visit http://www.phpbb.com
-->

<script type="text/javascript">
// <![CDATA[
var jump_page = '{LA_JUMP_PAGE}:';
var on_page = '{ON_PAGE}';
var per_page = '{PER_PAGE}';
var base_url = '{A_BASE_URL}';
var style_cookie = 'phpBBstyle';
var onload_functions = new Array();
var onunload_functions = new Array();

<!-- IF S_USER_PM_POPUP -->
if ({S_NEW_PM})
{
var url = '{UA_POPUP_PM}';
window.open(url.replace(/&amp;/g, '&'), '_phpbbprivmsg', 'height=225,resizable=yes,scrollbars=yes, width=400');
}
<!-- ENDIF -->

/**
* Find a member
*/
function find_username(url)
{
popup(url, 760, 570, '_usersearch');
return false;
}

/**
* New function for handling multiple calls to window.onload and window.unload by pentapenguin
*/
window.onload = function()
{
for (var i = 0; i < onload_functions.length; i++)
{
eval(onload_functions[i]);
}
}

window.onunload = function()
{
for (var i = 0; i < onunload_functions.length; i++)
{
eval(onunload_functions[i]);
}
}

// ]]>
</script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>

<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" />
<link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" />

<link href="{T_THEME_PATH}/normal.css" rel="stylesheet" type="text/css" title="A" />
<link href="{T_THEME_PATH}/medium.css" rel="alternate stylesheet" type="text/css" title="A+" />
<link href="{T_THEME_PATH}/large.css" rel="alternate stylesheet" type="text/css" title="A++" />

<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->
<link href="{T_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- ENDIF -->

</head>

<body id="phpbb" class="section-{SCRIPT_NAME} {S_CONTENT_DIRECTION}">

<div id="wrap">
<a id="top" name="top" accesskey="t"></a>
<div id="page-header">
<div class="headerbar">
<div class="inner"><span class="corners-top"><span></span></span>

<div id="site-description">
<a href="{U_INDEX}" title="{L_INDEX}" id="logo">{SITE_LOGO_IMG}</a>
<h1>{SITENAME}</h1>
<p>{SITE_DESCRIPTION}</p>
<p style="display: none;"><a href="#start_here">{L_SKIP}</a></p>
</div>
y el donde se encuntra la clase de logo, pero como te digo, la cambio y no pasa nada.

common.css

Cita:
/* General proSilver Markup Styles
---------------------------------------- */

* {
/* Reset browsers default margin, padding and font sizes */
margin: 0;
padding: 0;
}

html {
font-size: 100%;
/* Always show a scrollbar for short pages - stops the jump when the scrollbar appears. non-IE browsers */
height: 100%;
margin-bottom: 1px;
}

body {
/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
font-family: Verdana, Helvetica, Arial, sans-serif;
color: #828282;
background-color: #FFFFFF;
/*font-size: 62.5%; This sets the default font size to be equivalent to 10px */
font-size: 10px;
margin: 0;
padding: 12px 0;
}

h1 {
/* Forum name */
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
margin-right: 200px;
color: #FFFFFF;
margin-top: 15px;
font-weight: bold;
font-size: 2em;
}

h2 {
/* Forum header titles */
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-weight: normal;
color: #3f3f3f;
font-size: 2em;
margin: 0.8em 0 0.2em 0;
}

h2.solo {
margin-bottom: 1em;
}

h3 {
/* Sub-headers (also used as post headers, but defined later) */
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
text-transform: uppercase;
border-bottom: 1px solid #CCCCCC;
margin-bottom: 3px;
padding-bottom: 2px;
font-size: 1.05em;
color: #989898;
margin-top: 20px;
}

h4 {
/* Forum and topic list titles */
font-family: "Trebuchet MS", Verdana, Helvetica, Arial, Sans-serif;
font-size: 1.3em;
}

p {
line-height: 1.3em;
font-size: 1.1em;
margin-bottom: 1.5em;
}

img {
border-width: 0;
}

hr {
/* Also see tweaks.css */
border: 0 none #FFFFFF;
border-top: 1px solid #CCCCCC;
height: 1px;
margin: 5px 0;
display: block;
clear: both;
}

hr.dashed {
border-top: 1px dashed #CCCCCC;
margin: 10px 0;
}

hr.divider {
display: none;
}

p.right {
text-align: right;
}

/* Main blocks
---------------------------------------- */
#wrap {
padding: 0 20px;
min-width: 650px;
}

#simple-wrap {
padding: 6px 10px;
}

#page-body {
margin: 4px 0;
clear: both;
}

#page-footer {
clear: both;
}

#page-footer h3 {
margin-top: 20px;
}

#logo {
float: left;
width: auto;
padding: 10px 13px 0 10px;
}

a#logo:hover {
text-decoration: none;
}

/* Search box
--------------------------------------------- */
#search-box {
color: #FFFFFF;
position: relative;
margin-top: 30px;
margin-right: 5px;
display: block;
float: right;
text-align: right;
white-space: nowrap; /* For Opera */
}

#search-box #keywords {
width: 95px;
background-color: #FFF;
}

#search-box input {
border: 1px solid #b0b0b0;
}

/* .button1 style defined later, just a few tweaks for the search button version */
#search-box input.button1 {
padding: 1px 5px;
}

#search-box li {
text-align: right;
margin-top: 4px;
}

#search-box img {
vertical-align: middle;
margin-right: 3px;
}

/* Site description and logo */
#site-description {
float: left;
width: 70%;
}

#site-description h1 {
margin-right: 0;
}

/* Round cornered boxes and backgrounds
---------------------------------------- */
.headerbar {
background: #ebebeb none repeat-x 0 0;
color: #FFFFFF;
margin-bottom: 4px;
padding: 0 5px;
}

.navbar {
background-color: #ebebeb;
padding: 0 10px;
}

.forabg {
background: #b1b1b1 none repeat-x 0 0;
margin-bottom: 4px;
padding: 0 5px;
clear: both;
}

.forumbg {
background: #ebebeb none repeat-x 0 0;
margin-bottom: 4px;
padding: 0 5px;
clear: both;
}

.panel {
margin-bottom: 4px;
padding: 0 10px;
background-color: #f3f3f3;
color: #3f3f3f;
}

.post {
padding: 0 10px;
margin-bottom: 4px;
background-repeat: no-repeat;
background-position: 100% 0;
}

.post:target .content {
color: #000000;
}

.post:target h3 a {
color: #000000;
}

.bg1 { background-color: #f7f7f7;}
.bg2 { background-color: #f2f2f2; }
.bg3 { background-color: #ebebeb; }

.rowbg {
margin: 5px 5px 2px 5px;
}

.ucprowbg {
background-color: #e2e2e2;
}

.fieldsbg {
/*border: 1px #DBDEE2 solid;*/
background-color: #eaeaea;
}

span.corners-top, span.corners-bottom, span.corners-top span, span.corners-bottom span {
font-size: 1px;
line-height: 1px;
display: block;
height: 5px;
background-repeat: no-repeat;
}

span.corners-top {
background-image: none;
background-position: 0 0;
margin: 0 -5px;
}

span.corners-top span {
background-image: none;
background-position: 100% 0;
}

span.corners-bottom {
background-image: none;
background-position: 0 100%;
margin: 0 -5px;
clear: both;
}

span.corners-bottom span {
background-image: none;
background-position: 100% 100%;
}

.headbg span.corners-bottom {
margin-bottom: -1px;
}

.post span.corners-top, .post span.corners-bottom, .panel span.corners-top, .panel span.corners-bottom, .navbar span.corners-top, .navbar span.corners-bottom {
margin: 0 -10px;
}

.rules span.corners-top {
margin: 0 -10px 5px -10px;
}

.rules span.corners-bottom {
margin: 5px -10px 0 -10px;
}

(HE RECORTADO UNA PARTE PORQUE NO SE PERMITE MAS DE 10000 CARACTERES
a ver si es que hay que modificar otra clase, pero he estado tratando de econtrarla y nada.

GRACIAS
  #8 (permalink)  
Antiguo 09/10/2008, 18:54
Avatar de Nekko
Colaborador
 
Fecha de Ingreso: marzo-2008
Ubicación: Buenos Aires
Mensajes: 3.141
Antigüedad: 16 años, 1 mes
Puntos: 656
Respuesta: ajustar foro al diseño de mi web

Es mas facil si me pasás tu url para poder ver el sitio y decirte en donde debés buscar xD
__________________
Taller para crear themes wordpress desde cero | Presupuestos para trabajos particulares vía MP
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 16:04.