motivatingfactor
Forum Replies Created
-
Forum: Themes and Templates
In reply to: My RSS Icon is giving error —My Site Name>>Page Not FoundInside your “theme body” code, all I see is an rss image
<img src="<?php bloginfo('template_url')?>/images/rss.gif" alt="RSS" />
In your document head this is your existing rss code
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
it is on line 15: try replacing it with this:
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
You can always begin a conversation with me using one of the following messengers below:
skype: motivatebusiness
yahoo: motivatebusinessForum: Themes and Templates
In reply to: How to add javascript code for ad 468*60Provide a link to the site,
Forum: Themes and Templates
In reply to: .css and other filesHello,
I am happy to help you, but I don’t quite understand what you want to do. If you have all of the files for creating a new theme, why are you wanting to move them into the default theme?
Please be more clear with your exact needs.
You can always begin a conversation with me using one of the following messengers below:
skype: motivatebusiness
yahoo: motivatebusinessForum: Themes and Templates
In reply to: “About” page errorI can help you but I would need to see your page.php code
Forum: Themes and Templates
In reply to: Page scrolls far to the right – how can I fix this?In-case you didn’t fully understand my instructions: Change the width from 2200px to 220px in style.css line 996
Forum: Themes and Templates
In reply to: Page scrolls far to the right – how can I fix this?Your Sidebar (line 996) is set at: 2200px
Change to the following:
#sidebar {
margin-left:545px;
padding:32px 0 10px;
width:220px;
}Forum: Themes and Templates
In reply to: How to add javascript code for ad 468*60That depends on where exactly you would like the advertisements to show. Can you please be more specific?
Forum: Themes and Templates
In reply to: My RSS Icon is giving error —My Site Name>>Page Not FoundAre you wanting to insert feed code for the rss option to show in the address bar, or are you wanting to provide an rss link elsewhere in your theme?
Forum: Themes and Templates
In reply to: Help please with padding around header imageYes, I have google, but don’t put that address on these forums, due to spam. https://skype.com – it is free and easy to get
Forum: Themes and Templates
In reply to: Help please with padding around header imageYou will need to begin a chat with me, because I will need real-time communication with you to resolve this quickly
skype: motivatebusiness
yahoo: motivatebusinessForum: Themes and Templates
In reply to: Please help me with my sidebar (overflow?)Change your content width from 750px to 730px in style.css (line 120)
#content {
float:right;
overflow:hidden;
padding:10px 0 30px 20px;
width:750px;
}Forum: Themes and Templates
In reply to: Looping head images on refreshHere is a very simple script that may give you some ideas:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="https://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta content="mshtml 6.00.2800.1264" name="generator" /> <title>Random images</title> <style type="text/css"> /*<![CDATA[*/ body { background:#dddddd; } div#container { width:336px; position:absolute; top:100px; left:50%; margin-left:-168px; } img#random { width:324px; height:200px; border:double 6px #000000; } /*//]]>*/ </style> <script type="text/javascript"> //<![CDATA[ var images=new Array(); images[0]="image_1.jpg"; images[1]="image_2.jpg"; images[2]="image_3.jpg"; images[3]="image_4.jpg"; images[4]="image_5.jpg"; images[5]="image_6.jpg"; function randomimage() { var i=Math.floor(Math.random()*images.length); document.getElementById("random").src=images[i]; } onload=randomimage; //]]> </script> </head> <body > <div id="container"> <img id="random" src="" alt=""/> </div> </body> </html>
Feel free to begin a chat with me if you need more help:
skype: motivatebusiness
yahoo: motivatebusinessForum: Themes and Templates
In reply to: Help please with padding around header imageNp –
ever need help, drop me a line:
skype: motivatebusiness
yahoo: motivatebusinessForum: Themes and Templates
In reply to: Help please with padding around header imageYou will also need to edit:
#sidebar {style.css (line 120)
padding-bottom:25px;
position:absolute;
right:0;
text-align:left;
top:170px;
width:125px;
}Using the same values
Forum: Themes and Templates
In reply to: Help please with padding around header imageTry editing:
#sidebar2 {style.css (line 129)
left:450px;
padding-bottom:25px;
position:absolute;
text-align:left;
top:170px;
width:300px;
}(Line 129)