aero313
Forum Replies Created
-
has anyone had luck with this? it’s not working for me.
I’m having this problem too… please help!
Forum: Themes and Templates
In reply to: conditional tags / background imagethanks. I’m still missing something though —— what goes after the first line to add the styles?
<?php if (is_page_template(‘index.php’)){
echo “home”;
} else{
echo “”;
}?>
</head>Forum: Themes and Templates
In reply to: conditional tags / background imageI did this in my header.php file:
<body
id=”<?php if (is_page_template(‘index.php’)){
echo “home”;
} else{
echo “default”;
}?>” >
<div id=”wrapper” class=”hfeed”>
<div id=”header”>
<div id=”masthead”>
<div id=”branding” role=”banner” height=”150px”></div>
Forum: Themes and Templates
In reply to: How to Hide ‘Home’ from TwentyTen menu?hmm. I tried it again and it seems to have worked now. Thanks!
Forum: Themes and Templates
In reply to: How to Hide ‘Home’ from TwentyTen menu?thanks chinmoy… is that line 273 in the functions.php file? when I tried that, it broke the site. I get the error:
Fatal error: Call to undefined function add_action() in /data/23/2/4/0/2167815/user/2379276/htdocs/POL/wp-includes/functions.php on line 51I reinstalled wordpress at
https://03145e2.netsolhost.com/PLight/Forum: Themes and Templates
In reply to: background image disappears with gallery pluginis there an easy way to do that, or do I just need to sift through all the files in the skin?
Forum: Themes and Templates
In reply to: background image disappears with gallery pluginsorry, my mistake… I was looking at an older version of the .css file.
now the background image for the page is back, but the post background is gone (since we deleted the code for it).
Forum: Themes and Templates
In reply to: background image disappears with gallery plugindo you mean this line?
.single .post, .single-post { background: url(../../images/techblue/content-bg.jpg) repeat-x #FFF; border: 1px solid #CCC; margin: 0 10px 20px 0; }
I tried taking it out, but that didn’t work.