help with removing white space please - Joomla! Forum - community, help and support


hi

i have spent hours trying achieve this, , searched on forum, no solutions seemed work.

you see on page:    http://www.nvc-resolutions.co.uk/index.php  there large space above latest news module, positioned in user1 position using globalbiz template, below front page content module.

how can remove space?  have searched through css files template, changing borders , margins etc, without success.  have checked

marks in html of content page, again no luck.  far can see html has no space beneath last line of text.  solution must in setting or css code somewhere?


any suggestions?


thanks


achintya

i suggest trying duplicating/ammending css code , adding line float:left; newsflash declaration

change
body.dark div.newsflash {
background: #3e3e3e;
border: 2px solid #474747;
width: 252px !important;
height: 135px !important;
width: 256px;
height: 139px;
}

to this
div.newsflash {
        float:left;
background: #3e3e3e;
border: 2px solid #474747;
width: 252px !important;
height: 135px !important;
width: 256px;
height: 139px;
}
body.dark {
background: #3e3e3e;
border: 2px solid #474747;
width: 252px !important;
height: 135px !important;
width: 256px;
height: 139px;
}

remember though have white space because info modules) in right column making page bigger!!





Comments