KKBrainchild
Forum Replies Created
-
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] PositionHi!
I added the code/*
………MY CUSTOM STYLE
———————————-#art-main div.meteor-slides {
height: auto !important;
left: 60px;
position: absolute;
top: 190px;
}———————————-
at the end of my css file and changed the px just to see how it affects the appearance. But unfortunately nothing changes…Forum: Themes and Templates
In reply to: Add logo (header)you have two lines with ‘logo’ in your header code:
“><img src=”/images/logo.png” alt=”KK Brainchild” /></div>
(this is broken, because you did not mark the code when you were posting it)
this has a relative image url and might therefore fail.…. so what I can do?!
and:
<h1 style=”display:none;”><img src=”/images/logo.png” title=”Home” alt=”KK Brainchild” /></h1>
two problems here:
– the ‘squint’ double quotes (from copy/paste from a text source) which should be style=”display:none;”
and the relative path again.…. so how it has to look like?
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] PositionHi JLeuze!
Thanks for the tip! I am exactly looking for the command but after adding this part to my theme’s style css all I get is a white frame around my theme …?! It’s diordering the theme a little.
Shouldn’t it just affect the slider?!Forum: Themes and Templates
In reply to: Add logo (header)kkbrainchild.hostingsociety.com/wordpress
– I tried to post it but it didn’t work. However.The problem is that even after adding the code
<div id="logo"> <h1><a href="<?php echo get_option('home'); ?>/"><img src="<?php echo get_option('home'); ?>/wordpress/wp-content/themes/KK Brainchild Theme/images/logo.png" title="Return to Home." alt="IMAGE TEXT." height="20" width="80" /></a></h1> <span><?php bloginfo('description'); ?></span> </div>
to the header.php anyway nothing appears on the site…
Why?My header.php looks like this
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> <head profile="https://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> <title><?php if (is_home () ) { bloginfo('name'); } elseif ( is_category() ) { single_cat_title(); echo ' - ' ; bloginfo('name'); } elseif (is_single() ) { single_post_title(); } elseif (is_page() ) { bloginfo('name'); echo ': '; single_post_title(); } else { wp_title('',true); } ?></title> <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/script.js"></script> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <!--[if IE 6]><link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.ie6.css" type="text/css" media="screen" /> <![endif]--> <!--[if IE 7]><link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.ie7.css" type="text/css" media="screen" /> <![endif]--> <link rel="alternate" type="application/rss+xml" title="<?php printf(__('%s RSS Feed', 'kubrick'), get_bloginfo('name')); ?>" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="application/atom+xml" title="<?php printf(__('%s Atom Feed', 'kubrick'), get_bloginfo('name')); ?>" href="<?php bloginfo('atom_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php wp_head(); ?> </head> ---------------------------------------- <div id="logo"> <h1><a href="<?php echo get_option('home'); ?>/"><img src="<?php echo get_option('home'); ?>/wordpress/wp-content/themes/KK Brainchild Theme/images/logo.png" title="Return to Home." alt="IMAGE TEXT." height="20" width="80" /></a></h1> <span><?php bloginfo('description'); ?></span> </div> ----------------------------------------- <body> <div class="wrapper"> <div class="logo"> <a href="<?php bloginfo('url');?>"><img src="/images/logo.png" alt="KK Brainchild" /></a></div> <?php /* if (is_home()) echo( '<h1 id="title">'); else echo( '<div id="title">');?><a href="<?php bloginfo( 'url'); ?>"><?php bloginfo( 'name'); ?></a><?php if (is_home()) echo( '</h1>'); else echo( '</div>'); */?> <div id="art-page-background-gradient"></div> <div id="art-page-background-glare"> <div id="art-page-background-glare-image"></div> </div> <div id="art-main"> <div class="art-Sheet"> <div class="art-Sheet-tl"></div> <div class="art-Sheet-tr"></div> <div class="art-Sheet-bl"></div> <div class="art-Sheet-br"></div> <div class="art-Sheet-tc"></div> <div class="art-Sheet-bc"></div> <div class="art-Sheet-cl"></div> <div class="art-Sheet-cr"></div> <div class="art-Sheet-cc"></div> <div class="art-Sheet-body"> <div class="art-nav"> <div class="l"></div> <div class="r"></div> <ul class="art-menu"> <?php art_menu_items(); ?> </ul> </div> <div class="art-Header"> <div class="art-Header-jpeg"></div> <?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); } ?> <div style="position: absolute; width: 270px; height: 259px; z-index: 1; left: 618px; top: 74px" id="capa1"> <a target="_blank" href="#"><img border="0" src="<?php bloginfo('template_url'); ?>/images/ad1.png" width="125" height="125"></a> <a target="_blank" href="#"><img border="0" src="<?php bloginfo('template_url'); ?>/images/ad2.png" width="125" height="125"></a> <a target="_blank" href="#"><img border="0" src="<?php bloginfo('template_url'); ?>/images/ad3.png" width="125" height="125"></a> <a target="_blank" href="#"><img border="0" src="<?php bloginfo('template_url'); ?>/images/ad4.png" width="125" height="125"></a> </div> </div>
So I thought the image would be shown but … yeah, nothing.
Thanks for helping ??Forum: Themes and Templates
In reply to: Add logo (header)Thanks you…
And yes thats what I did. I added this code to my header.php but nothing appears on the website … ?? why ??Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] PositionAny one!??
Please ??
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Positionkkbrainchild.hostingsociety.com/wordpress
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Position