Ryan Fitzer
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Simpla HeaderLooks like you got it. Don’t forget to post how and why so other people can figure it out.
Forum: Fixing WordPress
In reply to: Theme Disappeared and Now Looks TerribleChange both your references to be:
https://www.tew.ithium.net/biggzay
I believe this should be the fix.
Reseting WordPress means reinstalling it. Much more work.
Let me know if this does the trick.
Forum: Themes and Templates
In reply to: Simpla HeaderFrom looking at your source code, it seems that you have inadvertantly deleted everything in your
<head>
element as well as your<doctype>
. Basically, everything that worpress needs to give your site apperance and function.If you replace everything befor the
<div id="header">
element you should be fine. Just cut and paste it from an unaltered version of your theme.And as far as the header image is concerned, that all looks correct. No need to email you any code.
Forum: Fixing WordPress
In reply to: Theme Disappeared and Now Looks TerribleI think your problem might reside in the fact that you changed the “WordPress Address to the URL” and “Blog Address”
Try making them both reference where you installed WordPress on your server. For example, Mine are both https://mysite.com/wordpress
Forum: Themes and Templates
In reply to: Simpla HeaderI’m not sure what the problem is. I post the code correctly but some reason it cuts it all out. But when I look at your site it seems like you have it working. Right? If not, let me know and I’ll email it to you.
Forum: Themes and Templates
In reply to: Simpla HeaderI’ve never used the simpla theme but I figure it’s probably the same as most. In your header.php file in your simpla’s theme folder you will find something similar to this:
`<h1>/”><?php bloginfo(‘name’); ?></h1>
Forum: Themes and Templates
In reply to: Simpla HeaderOk, for some reason my post got cut off. Lemmie try again.
Forum: Themes and Templates
In reply to: Simpla HeaderI’ve never used the simpla theme but I figure it’s probably the same as most. In your header.php file in your simpla’s theme folder you will find something similar to this:
`<h1>/”><?php bloginfo(‘name’); ?></h1>
Forum: Fixing WordPress
In reply to: Theme Disappeared and Now Looks TerribleBesides the title that is.
Forum: Fixing WordPress
In reply to: Theme Disappeared and Now Looks TerribleIt doesn’t seem to be finding your stylesheet for some reason. Exactly which options are you altering?
Forum: Themes and Templates
In reply to: Dynamic ID for <body> and subpagesThanks so much Kafkaesqui and everyone. This works great.
Forum: Plugins
In reply to: Making a plugin a part of the theme’s functions.php fileWow! That was easy. Just for the hell of it I renamed it to functions.php and stuck it in my theme’s folder. Then I deleted the plugin in my plugins folder, and it worked. Is there something in WP that tells it to look for unknown functions in the plugins folder and if they aren’t found, look for a functions.php folder in the theme’s folder?
Forum: Themes and Templates
In reply to: Blix theme & menu highlighting?I’ve tried to do a lot of altering with Blix as well and I feel the same as ladydelaluna. It’s a great theme but very convoluted behind the scenes. What your looking for happens in the header.php file in the theme folder. An example is here:
else {
(is_page($page_id))?$selected = ' class="selected"':$selected='';
echo "<li".$selected."><a href=\"".get_page_link($page_id)."\">$page_title</a></li>n";
}
Altering can be very tricky but the easiest way to keep it from being highlighted is in the spring_flavour.css file. What you’ll find there is this rule:#navigation .selected,
#navigation a:hover
{background-color:#1BA6B2}Just change the background color to
#A3C159
. But by doing this you will also loose the rollover (a:hover
). To keep the rollover but not the highlighting, change this rule to look like this (basically just split it up):#navigation .selected {
background-color:#A3C159;
}
#navigation a:hover {
background-color:#1BA6B2;
}Good luck.
Forum: Fixing WordPress
In reply to: Contact Form Issues….Hey, any idea how to make the blix contact form work on a Microsoft server? The rest of the theme works fine.
Forum: Themes and Templates
In reply to: Blix Contact Form not working?sweet_thing,
I’m having the same problem and tried both fixes above with no success as well. It definitely has to do with it being a Microsoft server (in my case anyway). I uploaded the same theme to a Unix based server and it worked perfectly.
Does anyone out there know what the problem is? I also emailed the author of the Blix theme to see if he might be able to help. I’ll let you know if I hear anything.