Main Menu
collapse

Simple Portal Archived Forum

This is an Archive Forum.

The content in this forum may be out-of-date or have been superseded by newer information, and links in forum pages to other sites may not work.
This forum contains archives for future reference.

Visit our thread at Simple Machines Forum for current support.

SMF 2.1 users: EhPortal is a ported version of Simple Portal specifically designed for the SMF 2.1 branch.
Please visit web-develop.ca to download EhPortal and for its support.

User Info

Welcome Guest.
Please log in.

Who's Online

  • Dot Guests: 1183
  • Dot Hidden: 0
  • Dot Users: 0

There aren't any users online.

Recent Posts

Adding Forums Button to Nav bar by jirapon
[August 01, 2019, 09:07:12 AM]


Re: Board Icons by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 04:03:41 PM]


MOVED: Czech translation???? by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 03:04:51 PM]


Board Icons by jirapon
[July 30, 2019, 07:28:44 AM]


Re: Thankyou Simpleportal, by ♦ Ninja ZX-10RR ♦
[July 29, 2019, 09:41:29 AM]


If you're interested in helping other members with support requests, consider joining the Community Support Helpers group.

como modificar le contenido de un bloque de noticias

Started by gustavof, December 15, 2009, 05:17:58 AM

Previous topic - Next topic

0 Members and 4 Guests are viewing this topic.

gustavof


130860

la unica solucion que s eme viene a la mente seria la de agregar una orden css igual que con las imagenes, pero especificando el ancho y largo de ese bloque en particular


130860

cuales imagenes? las que hay dentro del bloque?   si es asi tu mismo puedes especificar con cobigo bbc el ancho y el largo de la imagen

gustavof

pero a eso lo tendria que hacer noticia por noticia o se modifica el codigo del bloque?

Aclaro, en mi bloque de  Noticias desde un foro salen lo que se postea en el foro, noticias, imagenes, etc

Y las imagenes son muy grandes y queda feo , quiero que al mostrarlas les redusca el tama

130860

el portal tiene una opcion para redimensionar imagenes

gustavof

Quote from: 130860 on April 05, 2010, 10:03:21 AM
el portal tiene una opcion para redimensionar imagenes

si vi que tiene una opcion a tildar en: Configuraci


130860

abre tu archivo portal.js   y  modifica los valores segun lo quieras tener:

function sp_image_resize()
{
var possible_images = document.getElementsByTagName("img");
for (var i = 0; i < possible_images.length; i++)
{
if (possible_images[i].className != (portal_smf_version == 1.1 ? "sp_article" : "bbc_img sp_article"))
continue;

var temp_image = new Image();
temp_image.src = possible_images[i].src;

if (temp_image.width > 300)
{
possible_images[i].height = (300 * temp_image.height) / temp_image.width;
possible_images[i].width = 300;
}
else
{
possible_images[i].width = temp_image.width;
possible_images[i].height = temp_image.height;
}
}





solo modifica el 300 por o que tu quieras

gustavof

re-abro aqui para hacer una consulta.

He podido realizar el trabajo como me explicas pero el ajuste de la imagen es excesivamente lento y mientras me descuadra el foro y no queda muy bien

Mi pregunta es si se puede hacer algo como hace el foro SMF que  agrega los codigos ya con un tama

130860

disculpa la tardanza, el temas e me perdio y hasta ahora lo vi, dejame investigar, smf 2.0 ya hace esto por default, solo hace falta adaptarlo a simpleportal