puglet
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to: images on pages (not posts)Ok, thanks. Any other clues? I have no idea what it is or where to add it.
Forum: Themes and Templates
In reply to: How to: images on pages (not posts)Forum: Fixing WordPress
In reply to: Fatal error :0Nevermind – it was a problem on my end. Somehow Thematic was in the wrong directory,
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function thematic_before_widget()Having same problem! How did you fix this??
Forum: Fixing WordPress
In reply to: Fatal error :0this is the chunk of code mentioned in the error
// Register the 4th Subsidairy Sidebar register_sidebar(array( 'name' => '4th Subsidiary Aside', 'id' => '4th-subsidiary-aside', 'description' => __('The 4th widget area in the footer.', 'thematic'), 'before_widget' => thematic_before_widget(), 'after_widget' => thematic_after_widget(), 'before_title' => thematic_before_title(), 'after_title' => thematic_after_title(), ));
line 379 =
'before_widget' => thematic_before_widget(),
Forum: Themes and Templates
In reply to: Using a custom header nav in Twenty Tenyeah – i did that. but my images aren in a folder in the root directory of my hosting account. not anywhere near the WP directory. am thinking this is why it’s not working but don’t know how to fix?
and without the style sheet, it’s all just broken ??
Forum: Themes and Templates
In reply to: Using a custom header nav in Twenty Tenthanks – but what directory do i need to put the images in for that to work?
any idea on how to call out the stylesheet?
right now, things are looking about 0% closer to what they should ??
THANKS!!
Forum: Themes and Templates
In reply to: Using a custom header nav in Twenty Tenthis is the code — i can’t find where to call out the style sheet :9
<?php //wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?> <div id="header" style="width:989px"> <div id="Table_01" style="height:250px;background-color:#52422D;"> <div id="id1_"><img id="id1" src="/images/1.png" width="989" height="20" alt="" /></div> <div id="id2_"><img id="id2" src="/images/2.png" width="300" height="155" alt="" /></div> <div id="id3_"><img id="id3" src="/images/3.gif" width="689" height="104" alt="" /></div> <div id="id4_"><img id="id4" src="/images/4.png" width="689" height="15" alt="" /></div> <div id="id5_"></div> <div id="navcontainer"> <ul id="menu" class="orange"> <li><a href="index.html">Home</a></li> <li><a href="gallery.html">Gallery</a></li> <li><a href="services.html">Rates & Services</a></li> <li><a href="about.html">About/Contact</a></li> <li class="active"><a href="xxx.html">Blog</a></li> <li><a href="faq.html">FAQ</a></li></ul></div> </div>
Forum: Themes and Templates
In reply to: Using a custom header nav in Twenty TenOk, it didn’t work.
My nav is styled with info from an external stylesheet. That info clearly isn’t making it. Still trying to find where the images are located.
looks like: https://frolicblog.com/
needs to look like this (the green part): https://frolicphoto.com/dailyfrolic/
Forum: Themes and Templates
In reply to: twenty ten single columnthanks! that was waaaay easier than trying to find the answer on google ??
Forum: Themes and Templates
In reply to: Using a custom header nav in Twenty TenAWESOME!
thanks ??
Forum: Themes and Templates
In reply to: Using a custom header nav in Twenty TenThanks for the fast reply! So, just to be clear since I’m a noob – if my header is:
<div id="nav_"><img id="nav" src="/images/2.png" width="300" height="155" alt="" /></div> <div id="navcontainer"> <ul id="menu" class="orange"> <li><a href="index.html">Home</a></li> <li><a href="gallery.html">Gallery</a></li> <li><a href="services.html">Rates & Services</a></li> <li><a href="about.html">About/Contact</a></li> <li><a href="faq.html">FAQ</a></li></ul> </div>
Then i just paste that where?
Sorry – I’m trying but am a little over my head ??
Forum: Themes and Templates
In reply to: twenty ten single columnSo this is the way to turn posts (not pages) into single-column layout?
Forum: Themes and Templates
In reply to: Autofocus remove (c) hover-event & modify hover styleI solved my first problem by adding visibility: hidden. There’s probably a better way to do it, but this works.
#content .photo-credit {position:absolute;padding:16px;display:block;width:768px;height:100%;z-index:2;text-align:left;visibility:hidden;}
Forum: Themes and Templates
In reply to: how to disable .photo-credit overlay info in posts?not sure if this is the best way to do it, but it worked for me. add
visibility: hidden;to read like this:
#content .photo-credit {position:absolute;padding:16px;display:block;width:768px;height:100%;z-index:2;text-align:left;visibility:hidden;}