ncearly
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Coding questionUntil the past few days i didnt understand what was and wasnt supported. I guess because i’ve already put a ton of work into this one.
Forum: Fixing WordPress
In reply to: Coding questionIf i could find a way to make the nav bar get wider when there are more than one line of page links on it i wouldnt have to have the dropdown. As it is when i add more than one line of pages in my menu they only show when hovered over because the second or third line becomes white which is the text color. I dont know how to make the nav bar wider so i’m trying to do it this way.
Forum: Fixing WordPress
In reply to: Coding questionThis theme is one i got from ebay. It is the revolution lifestyle. Unfortunately the author no longer supports this theme.
Forum: Fixing WordPress
In reply to: Coding questionThis bar was originally for categories. I’m using it for custom page menus of other pages selected. The bar above drops down to 4 levels. How do i edit the css so this will happen? Please forgive my stupidity im at best a novice with coding and probably leaning more toward a complete rookie.
Forum: Fixing WordPress
In reply to: Coding questionI copied and pasted that. No syntax error with it that way however the dropdown doesnt happen either. Just highlights the pages on the page. http://www.millenniumgaming.net/gaming-tips/
Forum: Fixing WordPress
In reply to: Coding questionParse error: syntax error, unexpected ‘,’ in /home/content/81/11938281/html/millenniumgaming.net/wp-content/themes/videogame/header-testheader.php on line 128
is the result.Forum: Fixing WordPress
In reply to: Coding questionHere is what i’m trying. I keep getting syntax errors so i know it’s how i’m setting it up. I am not understanding the codex yet.
//<?php wp_nav_menu( array( ‘container’ => ‘none’, ‘container_class’ => ‘menu-header’, ‘theme_location’ => ‘primary’, ‘menu’ => get_post_meta, ( $post->ID, ‘MenuName’, true ‘depth’=>2)) ); ?>
//
it works great without placing the depth => value in so i know i’m placing the depth value incorrectly or in the wrong place.Forum: Fixing WordPress
In reply to: Coding questioni have looked at the codex and i’ve tried adding the following line //’depth’=> 3// to the code in several places. This paticular theme allows for 4 as is accept i dont know in the line of code above where the //’depth’=> 3// arg would go. each place i put it i get a syntax error. Sorry i’m not a programmer so the codex doesnt totally make since to me yet. Especially the order of things.
Forum: Themes and Templates
In reply to: Theme or css problem?i am placing custom menus on the subnav bar. the menus are getting there as they should. what is happening is my subnav bar which is the bottom bar is only showing a black background for one line across. If my menu of pages takes more than one line it is white. notice on my homepage the bar i’m refering to has the links acade games, consoles, hotdeals ect. if you click game tips in the nav menu above you will see a full list in the subnav bar now. Scroll down and you will notice that there is actually 3 horizontal rows of choices accept the lower two don’t show up until you scroll over them. What i’m trying to do is make the nav bar the same color all the way down so my text shows up to the reader without having to scroll over it to see its there.
Forum: Themes and Templates
In reply to: Theme or css problem?Yes all plugins have been deactivated.
Forum: Themes and Templates
In reply to: Change navbar colorthanks
Forum: Themes and Templates
In reply to: Change navbar colorit came with a website url i purchased on ebay. I dont mind buying an upgraded theme i dont guess. Will it change a lot of the work i’ve done on the site already?
Forum: Themes and Templates
In reply to: Change navbar colorwho is the vendor for this theme i didnt buy it.
Forum: Themes and Templates
In reply to: Creating various headersHere is the code i am using to try to make custom nav bar for different pages. I’ve created a different header and replaced the following code //<?php wp_list_pages(‘title_li=&depth=4&sort_column=menu_order’); ?>// with this code
//<?php
$children = wp_list_pages(‘title_li=&child_of=’.$post->ID.’&echo=0′);
if ($children) { ?>-
<?php echo $children; ?>
<?php } ?>
// which seems to work on some of the pages way down the generational line but not on the pages closer to the home page. Also is there a way to make the navbar when pages go to 2 lines not be a white line where my text doesnt show until it’s hovered over?Forum: Plugins
In reply to: [Simple Slideshow Manager] php code not workingI added this above the div id that you told me above. It now shows but gives the error message “The gallery group “Featured” is no longer available , Please reconfigure your widget/shortcode/phpcode which display’s this slideshow.”
I tried renaming featured in the code to featured1 and created a gallery named featured1 but it just shows the same message.