ffgdirector
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Adding Bullets to CSSThank you so much Andrew. That worked perfectly.
If it’s not too much trouble, I’m also having issues figuring out how to double space my paragraphs without manually inserting into the text editor.
Is there a way to do this?
Forum: Fixing WordPress
In reply to: Adding Bullets to CSSThanks for responding Andrew. There’s a section in the options of the theme called “Styling Options” where “Custom CSS” is supposed to go. Is this where something would be added and if so, what would I add?
There is also style.css when I go to wordpress’ Edit Themes section
Forum: Fixing WordPress
In reply to: Page Not Found TroubleCan anyone help? You can see the message here: https://freelanceflashgames.com/news/games/
Forum: Fixing WordPress
In reply to: Error establishing a connection to database (help)I’m not sure what was going on, but everything seems to be back to normal now. Thanks Samuel.
Forum: Themes and Templates
In reply to: Help turning a 2 column theme into 1 ColumnThanks zeaks, I managed to get rid of the sidebar ??
I tried editing it so that the body text would be in the center of the page by changing this bit of code:
#contentwrapper { float: left; width: 550px; }
But it didn’t seem to have any effect. Any ideas?
Forum: Plugins
In reply to: Need Help with showing pages; code fixThanks! That works perfectly, and I don’t even have to go in and edit it when I edit new pages. I only have to edit it when I want them to appear. Thanks again for all the help.
Forum: Plugins
In reply to: Need Help with showing pages; code fixCould someone please help?
Forum: Plugins
In reply to: Is there a plugin to remove a page from the header tabs?I’m having a bit of a problem now. I can’t seem to add pages that will appear. No matter what I change the numbers to, the pages won’t show up. I’ve tried adding more than 3 pages and it still hides all of them. Any idea of what to do?
Forum: Themes and Templates
In reply to: How to add custom header (StudioPress)Does anyone know?
Forum: Plugins
In reply to: Is there a plugin to remove a page from the header tabs?That got rid of all but one of the pages. I was planning on having more than one page anyway, so your code works out well. Thanks for the help. ??
Forum: Plugins
In reply to: Is there a plugin to remove a page from the header tabs?Mine seems to be different. I searched and couldn’t find anything to do with wp_list_pages(). I’m not a coder, but this seems to be the closest thing I could find that had to do with pages in the header:
<div id="nav"> <?php function get_the_pa_ges() { global $wpdb; if ( ! $these_pages = wp_cache_get('these_pages', 'pages') ) { $these_pages = $wpdb->get_results('select ID, post_title from '. $wpdb->posts .' where post_status = "publish" and post_type = "page" order by ID'); } return $these_pages; } function list_all_pages(){ $all_pages = get_the_pa_ges (); foreach ($all_pages as $thats_all){ $the_page_id = $thats_all->ID; if (is_page($the_page_id)) { $addclass = ' class="current_page"'; } else { $addclass = ''; } $output .= '<li' . $addclass . '><a href="'.get_permalink($thats_all->ID).'" title="'.$thats_all->post_title.'"><span>'.$thats_all->post_title.'</span></a></li>'; } return $output; } ?> <ul> <?php
Sorry that’s kind of long. Any ideas?