CRISPY
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Arcade Basic] Arcade Basic gallery and removing icon1. Go to apearance then editor.
2. You will find some php code’s at your right.
3. find header.php
4. Use this shortkey “ctrl f” and there will appear a search bar.
5. Copy and paste this code:<i class="fa <?php echo $bavotasan_theme_options['header_icon']; ?>"></i>The code will be visible with a yellow mark.
Then delete it.6. Then search this code with the sortkey again:
<?php if ( $bavotasan_theme_options[‘header_icon’] ) { ?>
7. copy this code:
<div id="header-image"> <a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"> <img align="middle" src="http://sitedomain.nl/wp-content/uploads/yourimage.png" alt="Logo" width="200" height="200"/> </a> </div>7. select the code.
How to do this?
Point your mouse at the beginning of the code
Then click left mouse button and while holding drag it over the code8. paste the code
9. Update and let me know if it works
Forum: Themes and Templates
In reply to: [Arcade Basic] Remove Header Images from pageshttp://ww.wp.xz.cn/support/topic/different-header-per-page-1?replies=4
I explained here the last message works.
To find the code a gave there use this shortkey: “ctrl f” and there will be a search balk copy and paste the code and you will find it. Then follow the instructionsLet me know if it worked for you.
Forum: Themes and Templates
In reply to: [Arcade Basic] Different header per page<?php if(is_home) { ?> <?php if( get_header_image() ): ?> <div id="custom-img-header"><img src="<?php echo header_image(); ?>" alt="" /></div> <?php endif; ?> <?php } ?>this is a option to.
You can find this in header.php delete the code:
<?php if( get_header_image() ): ?>
and place the code i gave you instead!
that should work 😉
Forum: Themes and Templates
In reply to: [Arcade Basic] Different header per page“1” is the page id you can also do this:
<?php if (is_post(1)) ?>you can find page id in url
Forum: Themes and Templates
In reply to: [Arcade Basic] Different header per pageyou can do that with if
<?php if (is_page(1)) ?>Forum: Themes and Templates
In reply to: [Arcade Basic] Arcade Basic gallery and removing iconah lol if you use a png you can make shadow by your self:P forgot that stupid..
Forum: Themes and Templates
In reply to: [Arcade Basic] Arcade Basic gallery and removing iconHi.
lbr IsizzIf you want to change the icon below the site title to your own logo?
1. Upload you own logo via media
2. Click on the image inside the media uploader and copy the image url
3. Go Appearance>header.php and find the code:<?php if ( $bavotasan_theme_options[‘header_icon’] ) { ?>
4. After that code insert this one:
<div id="header-image"> <a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"> <img align="middle" src="http://sitedomain.nl/wp-content/uploads/yourimage.png" alt="Logo" width="200" height="200"/> </a> </div>5. Change to your link, and delete the code after:
<?php if ( $bavotasan_theme_options[‘header_icon’] ) { ?>
so delete this one:
<i class=”fa <?php echo $bavotasan_theme_options[‘header_icon’]; ?>”></i>
6. After the div code u also have to use a php space code:
str_repeat(‘ ‘, 2);
or
<br></br>This will make sure there is a space between the tagline and your logo!
7. I think you are now done (i dont know if you can add a shadow into it, maby with css)
Christian
Forum: Themes and Templates
In reply to: [Arcade Basic] Arcade Basic gallery and removing iconis the shadow in the icon.png ore is it a css code?
Forum: Themes and Templates
In reply to: [Arcade Basic] Arcade Basic gallery and removing icon<?php
if ( is_page( ‘about’ ) || ‘2’ == $post->post_parent ) {
// the page is “About”, or the parent of the page is “About”
$bannerimg = ‘about.jpg’;
}
?>