Creativix menu bar
-
Hello!
I am using the Creativix theme. I have set up a drop down menu on my homepage. However, when I hover my curser over any of my drop down menu’s, it does not highlight or even show any type of presence that would make anyone know that you are hovering or about to select something within the drop down menu. How can I make it show like a “shadow” or “change of color” when hovering over a selection over a drop down menu?
Thanks in advance!
-
please post a link to your site to illustrate the problem.
ok… it is youandthekids.com
thankyou!
in style.php:
the menu hover color is:
#header #navbar a:hover { color: #939393; }for the drop-down:
#header #navbar ul a:hover, #header #navbar ul a:focus { color: #939393; }the menu link color is:
#header #navbar a{ color:#888; }for instance, edit the :hover color codes, or add text-decoration:underline;
example:#header #navbar a:hover { color: #444; text-decoration:underline; }http://www.w3schools.com/css/css_link.asp
you could try and use a tool such as Firebug http://getfirebug.com/ to investigate where the styles are coming from.
thank you so much! I will definately give it a shot…
Hello, I’m trying to figure out how to change the color of the menu bar and the bar beneath the image slider. I’ve been trying to look through the forum but was not able to find the answer. my site is corporatepsinc.com
Thank you!
You have to add the class in style.css of your theme.
The menu bar color :. navigation{
background: #eef !important;
}And the slider bar color:
#slide_wrapper{
background: #eef !important;
}arti singh: that didn’t work 🙁
what exact changes have you added where?
did you leave those changes just for now or did you remove them again?
did you clear the browser cache to get your chnages to show in the browser?please leave any susgested changes in your site until you get feedback from a forum helper.
here again:
edit style.php, and find:
.navigation { background: url(images/navbar.png) no-repeat; ... ... }the menu bar background is a graphic in the /images folder of the theme.
download the graphic, use a graphics editor to change the color, re-upload it to the same location.same for the area below the slider:
look for the style of#slide_wrapperalchymyth
Thank You!!! I totally forgot about FTP! I was able to figure it out.
Thank you thank you thank you!!!! 😀
I’m using Chrome 21.0 and can’t replicate this white font drop-down menu.
I have another question, I removed the “Recent Articles” in the front page and want to replace it with another page. Since I did that, there’s an empty spot. How would I do that?
Also, I would like to upload a background picture but it’s not filling up the whole page. Instead, its only shows up as a block at the top of the page.
Thank you!
According your theme WP-Creativix, you have to remove this code in index.php file and this code add on your page where you want to see the “Recent Articles”.
<?php global $post; if(!empty($cxOptions["featured_sort"])) { $feat_sort = $cxOptions["featured_sort"]; } else { $feat_sort = "date"; } if(!empty($cxOptions["featured_order"])) { $feat_order = $cxOptions["featured_order"]; } else { $feat_order = "DESC"; } $args = array( 'meta_key' => 'feat_front', 'meta_value'=> '1', 'suppress_filters' => 0, 'post_type' => array('post', 'page'), 'post_status' => 'publish', 'numberposts' => 2, 'orderby' => $feat_sort, 'order' => $feat_order); $myposts = get_posts( $args ); if(!$myposts) { $args = array('suppress_filters' => 0, 'post_type' => array('post'), 'post_status' => 'publish', 'numberposts' => 2, 'orderby' => $feat_sort, 'order' => $feat_order); $myposts = get_posts( $args ); } foreach( $myposts as $post ) : setup_postdata($post); $thumb = wpcx_get_wp_generated_thumb("feat_thumb"); ?> <div class="feat-post" id="feat-post-<?php the_ID();?>"> <h2><a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title();?></a></h2> <h3>Published <?php the_time(get_option('date_format')); ?> at <?php the_time(get_option('time_format'));?> - <?php comments_number('No Comments','1 Comment','% Comments'); ?></h3> <?php the_excerpt();?> <a href="<?php the_permalink();?>"><?php if($thumb) {?><img src="<?php echo $thumb;?>" alt="" /><?php } ?></a> </div> <?php endforeach; ?>If u want to upload background image then the image should be large(i.e 1200*1000).
option should be:-
Position: left,
Repeat: no-repeat,
Attachment: scroll
The topic ‘Creativix menu bar’ is closed to new replies.