Status
Not open for further replies.

Dutch_Boy

Customer
Hello,

As you can see in the pic, some of the pictures are not showing.
How can i fix this?

Already re uploaded the shout and added the product.

shout.jpg


If installed a new template. And it only happens with this new template.

And how can i change the color of the box where you type you messages?

Kind regards,

Dutch_Boy.
 
Try looking in the dbtech_vbshout_memberaction_dropdown template and check image paths.

The other issue is the control_focus_background stylevar I believe :)

Sent from my X10i using Tapatalk
 
Code:
	<ul class="popupbody popuphover memberaction_body" style="display:none;" id="menu{vb:var i}_{vb:var instance.instanceid}">
		<li class="left">
			<a href="{vb:link member, {vb:raw memberinfo}}" target="_blank">
				<img src="{vb:stylevar imgdir_siteicons}/profile.png" alt="" />
				{vb:rawphrase view_profile}
			</a>
		</li>		
		<vb:if condition="$canpm">
		<li class="right">
			<a href="javascript://" onclick="return vBShout{vb:var instance.instanceid}.create_pm('{vb:var userid}', '{vb:var jsusername}');" title="{vb:raw usertitle}">
				<img src="{vb:stylevar imgdir_siteicons}/message.png" alt="" />
				{vb:rawphrase send_private_message}
			</a>
		</li>
		</vb:if>

		<vb:if condition="!$isprotected AND $userid != $bbuserinfo['userid']">
		<li class="left">
			<a href="vbshout.php?{vb:raw session.sessionurl}do=report&shoutid={vb:var shoutid}" target="_blank">
				<img src="{vb:stylevar imgdir_siteicons}/moderation.png" alt="" />
				{vb:rawphrase dbtech_vbshout_report_shout}
			</a>
		</li>
		<vb:if condition="$permissions['giveinfraction']">
		<li class="right">
			<a href="infraction.php?{vb:raw session.sessionurl}do=report&u={vb:raw userid}" target="_blank">
				<img src="{vb:stylevar imgdir_siteicons}/moderation.png" alt="" />
				{vb:rawphrase dbtech_vbshout_give_infraction}
			</a>
		</li>
		</vb:if>

		<!--DBT_PRO_START-->
		<vb:if condition="$permissions['canban']">
		<li class="left">
			<a href="javascript://" onclick="return vBShout{vb:var instance.instanceid}.usermanage('banunban', '{vb:var userid}');">
				<img src="{vb:stylevar imgdir_siteicons}/x.png" alt="" />
				{vb:rawphrase dbtech_vbshout_ban_usage}
			</a>
		</li>
		</vb:if>
		<vb:if condition="$permissions['cansilence']">
		<li class="right">
			<a href="javascript://" onclick="return vBShout{vb:var instance.instanceid}.usermanage('silenceunsilence', '{vb:var userid}');">
				<img src="{vb:stylevar imgdir_siteicons}/x.png" alt="" />
				{vb:rawphrase dbtech_vbshout_silence_usage}
			</a>
		</li>
		</vb:if>
		<!--DBT_PRO_END-->

		<li class="left">
			<a href="javascript://" onclick="return vBShout{vb:var instance.instanceid}.usermanage('ignoreunignore', '{vb:var userid}');">
				<img src="{vb:stylevar imgdir_siteicons}/ignore.png" alt="" />
				{vb:rawphrase dbtech_vbshout_ignore_unignore}
			</a>
		</li>
		</vb:if>

		<!--DBT_PRO_START-->
		<vb:if condition="$permissions['canprune']">
		<li class="left">
			<a href="javascript://" onclick="return vBShout{vb:var instance.instanceid}.usermanage('pruneshouts', '{vb:var userid}');">
				<img src="{vb:stylevar imgdir_siteicons}/x.png" alt="" />
				{vb:rawphrase dbtech_vbshout_prune_shouts}
			</a>
		</li>
		</vb:if>
		<!--DBT_PRO_END-->

		<vb:if condition="$chatroom['creator'] == $bbuserinfo['userid'] AND $userid != $bbuserinfo['userid']">
		<li class="left">
			<a href="javascript://" onclick="return vBShout{vb:var instance.instanceid}.usermanage('chatremove', '{vb:var userid}');">
				<img src="{vb:stylevar imgdir_siteicons}/x.png" alt="" />
				{vb:rawphrase dbtech_vbshout_kick_from_chat}
			</a>
		</li>
		</vb:if>
	</ul>

It looks oke to me :S If check the ignore.png and its in the right map and its png :S
 
Are you able to right click any of the broken images and click View Image? It should open a new tab with the image URL in the address bar and a 404 error on the main screen.
 
Status
Not open for further replies.
Top