airporte
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Login PW ChangedI should have.. My head wasn’t in the right spot when working out this problem. I was under the impression that both people we were in contact with under the client had no idea how to do anything web-related. I’m assuming they had someone (third-party) and figure this out.
Forum: Fixing WordPress
In reply to: Login PW ChangedAh f*ck, forgot about that.
P.S. Host is dot5hosting
Forum: Fixing WordPress
In reply to: Styling Pages ( the_content(); )bump.. *still looking myself*
Forum: Fixing WordPress
In reply to: Embedding PHP in PagesAlright, so what would I have to alter/edit in this new Page template that would allow me to input PHP tags/template tags into the content area?
Forum: Fixing WordPress
In reply to: Styling Pages ( the_content(); )Nothing special.. just meticulous design. I was being picky and wanted my content (generated from the single post) to align correctly with the content from my sidebar. However, that auto-populated <p> tag is giving me a little bit of pixels.
Forum: Fixing WordPress
In reply to: Styling Pages ( the_content(); )bump
Forum: Fixing WordPress
In reply to: Excluding Pages from wp_list_pagesAh, thank you. I failed to take a look at the URL while editing the page.
Forum: Fixing WordPress
In reply to: Linking to pages in root folderIf I did decide to keep everything, including my blog, in my root directory.. what would be my desired path to link to static pages within the same directory? I was assuming that if I had my navigation in my header.php file.. and I wanted to link to my contact.php, I would just do a href=”contact.php”.. However, that path would be incorrect since it would link to my root folder and not to the template location where my theme and static pages are.
For example..
/root directory/
– index.php (WordPress)
– header.php (WordPress)
– sidebar.php (WordPress)
– footer.php (WordPress)
– contact.php (static)Forum: Fixing WordPress
In reply to: Linking to pages in root folder@iradiax
I’m currently using bloginfo() for linking stylesheets and images WITHIN the WordPress folder. I may have overlooked it but can bloginfo assist me in linking to files outside of WP’s root folder?
Forum: Fixing WordPress
In reply to: coding help?function list_subpages( $query = '' ) { global $wpdb, $post; parse_str($query, $q); if ( empty($q['child_of']) && empty($post->ID) ) return; $defaults = array( 'child_of' => $post->ID, 'echo' => 1, 'title_li' => '', 'depth' => 0, 'include' => '', 'exclude' => '' ); $options = array_merge($defaults, $q);
it’s part of the list_subpages plugin . i remember asking somebody about it at school and getting the response that it put the dynamic content immediately into a list but i just wanted to get some more info on it and how i could use it.
Forum: Fixing WordPress
In reply to: Padding/Margin problemsanybody…?
Forum: Fixing WordPress
In reply to: Padding/Margin problems<?php get_header(); ?> <?php list_subpages_andreas01(); ?> <?php // This generates the subpage menu. If you don't want to use it, delete this line. ?> <div id="contentwide"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post"> <h2><?php the_title(); ?></h2> <?php the_content('<p class="serif">Read more »</p>'); ?> <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?> <?php edit_post_link('Edit this page','<p>','</p>'); ?> <?php comments_template(); ?> <?php endwhile; endif; ?> </div> </div> <?php get_footer(); ?>
By the way, here’s my code for the Page Template. The right column sits in the contentwide and content divs. I’ve tried adding padding and margin to both classes in the stylesheet but it just won’t move.
Forum: Developing with WordPress
In reply to: New to wordpress and i need help please!how about just using active states for each column? im thinking the orange color used will be the “active stage” color . i wanted to try avoiding using a header for the sub nav because having all the different font sizes might be hard for me to make it look visually appealing and align correctly with the main nav. thanks so much for the input and let me know if you have any other suggestions. very much appreciated
Forum: Developing with WordPress
In reply to: New to wordpress and i need help please!thanks so much for the help haecceity! i’ve actually been messing with Andreas01-12 template all day and I’ve got a rough layout of it. Check it out right here