Quote:
Originally Posted by karlm
I wish to make use of this in different areas (categories) of the site, I've followed the instructions on how to do that from the FAQ.
I made a separate folder and gave it 777 permissions - it reflected the standard logo. However, once I add the code from the FAQ for categories....
Code:
node.publishdate < '. vb::$db->sql_prepare($time) .' AND
category.categoryid IN ( 9 )
GROUP BY node.nodeid
It stops working entirely and shows only a blank slate.
|
please try
Code:
node.publishdate < '. vb::$db->sql_prepare($time) .' AND
category.categoryid = 9
GROUP BY node.nodeid
@Coolbluelogo
I need more debug, please follow the faq
@intruder
untested:
find
Code:
$output_bits = '
<link rel="stylesheet" href="' .$slider_img_filepath. 'nivo-slider.css" type="text/css" media="screen" />
<link rel="stylesheet" href="' .$slider_img_filepath. 'nivo-slider_uf_theme.css" type="text/css" media="screen" />
<div style="height:' . $maxheight . 'px;">
<div id="wrapper">
replace with:
Code:
$newheight = $maxheight + 42;
$output_bits = '
<link rel="stylesheet" href="' .$slider_img_filepath. 'nivo-slider.css" type="text/css" media="screen" />
<link rel="stylesheet" href="' .$slider_img_filepath. 'nivo-slider_uf_theme.css" type="text/css" media="screen" />
<div style="height:' . $newheight . 'px;">
<div id="wrapper">
and in the css file which you uploaded to your server find this part:
Code:
.nivo-caption {
background: none repeat scroll 0 0 #0D2132;
bottom: 0px;
color: #FFFFFF;
left: 0;
opacity: 0.4;
position: absolute;
width: 100%;
z-index: 8;
}
and change the bottom value to -42px
@Loversama
I need more information on the database error so i can help.