sidgoyal1
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Clickable logo in Thematic child theme?Instead of putting it in the css, simply put it in the div with the img tag like so
<a href="http://www.arccadd.com/"> <img src="http://www.arccadd.com/wp-content/uploads/arccadd-logo.gif" /></a>The other (bad) way to do it is to create a complete transparent image which is the size of the logo and put in in the div and then link it to the home page. 😛
Forum: Fixing WordPress
In reply to: Having problems with the title h1 tagYou’re welcome Matt.
Actually I have made a whole video program myself. Check out:
http://www.webinstitute.in/members/
I teach everything from scratch using screencast videos.
Forum: Themes and Templates
In reply to: border around whole website? GrapheneYou may have to change your css a bit. Add this to your styles.css file
body{
border: 1px solid #4c4c4c;
}
or find the main content div id and then add this code:
#your_content_div_id{
border: 1px solid #4c4c4c;
}
Forum: Fixing WordPress
In reply to: Having problems with the title h1 tagHi Matt
Actually you did not remove h1 from the first declaration
h1, h2, h3 {
font-family: “Didot”,Arial,Helvetica,sans-serif;
line-height: 30px;
}Here is a generic css tip. Whenever there are multiple declarations and yo
wish to resolve the conflict use !important after writing the value of a css property if you do not wish to find the conflict. Thus in your case:
h1{font-family:Times !important; line-height:30px; color:#6d864f !important;}will resolve the issue.
Forum: Fixing WordPress
In reply to: Can guests add news ?Make registration default role to “contributor” and that will serve your purpose.
Logged in people can then submit news and it will get published once you approve it.
Forum: Fixing WordPress
In reply to: RSS feed does not workChange your permalink to
/%postname%/
Otherwise your rss feed url is
http://fannie.ecoliers.ca/?feed=rss2
which works fine.
Forum: Fixing WordPress
In reply to: Having problems with the title h1 tagThis time you need to make the change in the css file.
h1, h2, h3 {
font-family: “Didot”,Arial,Helvetica,sans-serif;
line-height: 30px;
}If you want to change h1, remove that from the above and make a separate entry for it so that you will have
h2, h3 {
font-family: “Didot”,Arial,Helvetica,sans-serif;
line-height: 30px;
}h1{
font-family: Georgia;
line-height: 50px;
color: #4c4c4c !important;
}Forum: Fixing WordPress
In reply to: Having problems with the title h1 tagThe solution is not in the css file. You need to make changes in the theme’s files
page.php
single.php
index.phpalso in the category.php file or archive.php file (if they are there)
In those files you are like to find something like:
<h2> <?php the_title(); ?> </h2>and that is where you need to make the chnge.
Forum: Fixing WordPress
In reply to: link problemYou will need to allow me to see the page. I can then give you the solution.
Forum: Fixing WordPress
In reply to: link problemOne approach can be this define different headers in your stylesheet
#header1
#header2and then in your file header.php, you can have something like this
<div id=”<?php if($page_id=’20’) echo ‘header1’; else echo ‘header2’;?>”
You can also use page array for multiple page ids.
Forum: Fixing WordPress
In reply to: Having problems with the title h1 tagHi Matt
The title is usually h1 but it could be that in your theme’s case, it is not. You will need to manually change your theme files. Look for the code
the_title()
and you should be able to find it enclosed within h2 tags. Change tat to h1.
Forum: Fixing WordPress
In reply to: link problemSimply try:
#header
{height:250px; background:url(images/top.gif) top center no-repeat #fff; width:100%}Forum: Fixing WordPress
In reply to: How do I add extra information using Contac Form 7?This link will answer your queries:
http://contactform7.com/blog/2009/12/25/special-mail-tags/Forum: Fixing WordPress
In reply to: link problemDo you want the same header for blog and pages? will it be possible to see the actual live link?
Forum: Fixing WordPress
In reply to: Last Child Category of PostTry this:
<?php
$category = get_the_category($post->ID);
echo end($category)->cat_name;
?>This will echo the last child category.