I’m using this plugin on my site and i’m very happy with it but i’m going to custom the styling for this in the CSS Stylesheet but i’m not to sure where i would place the code for this in the stylesheet.
Could anyone give me an idea as to where abouts in the Stylesheet I would place the code?
Thanks.
https://www.ads-software.com/extend/plugins/mailchimp/
]]>I saw that there was an IE global variable so I tried to make use of that. I’m not getting any errors when I run this, buts its not enqueuing the stylesheet as I hoped. Anyone have any idea what the problem is?
thanks for any help
$bloginfo = get_bloginfo('template_url');
if ( !function_exists( 'StyleLoader' ) ) {
function StyleLoader( $bloginfo ) {
if ( !is_admin() ) {
global $is_IE;
if ( $is_IE ) {
wp_register_style('ieStyle', $bloginfo . '/css/ieStyle.css', array(), '1.0', 'screen');
wp_enqueue_style('ieStyle');
}
}
}
}
add_action('wp_head', 'StyleLoader');
]]>Just one quick question on editing the “Vermillon” theme.
The link to my site is https://allshoresp.com
Basically what I want to do is eliminate the text currently in the header and replace it with an image (my logo). Usually the header is an image file which I simply recreate, but apparently this time its different and its only color. Below is the code for the stylesheet and header.php file respectively.
Also you’ll notice this pesky Archive button on the bottom of the header. Id like to remove this as well.
Thanks for your help in advance!
Here are the pastebins for the code:
Stylesheet.css = https://wordpress.pastebin.ca/1831009
header.php = https://wordpress.pastebin.ca/1831011
I have a problem. It isnt linking to the stylesheet.
When i veiw the header.php file it seems to look fine, although when i veiw the source cose and its online it has just dissapeared!!!
Ive looked onlione for help to no avail, has anyone else had this problem or knows what is going on?
meta information on Header.php
<link rel=”stylesheet” href=”<?php bloginfo(‘/stylesheet_url’); ?>” type=”text/css” media=”screen” />
<link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘/rss2_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘/pingback_url’); ?>” />
Can someone please help.
Also are there any like “how to’s” that explain what everything is in the stylesheet.css ?
-bc
]]>