wdejesus
Forum Replies Created
-
Forum: Plugins
In reply to: [Max Mega Menu] Mega Menu Title and styling???Hi Tom,
I checked my menu and everything was fine. It seems I have to add the number to the following class for the menu for it to disappear.
#mega-menu-item–4
Forum: Plugins
In reply to: [Max Mega Menu] Mega Menu Title???Hi Tom,
Yes, thank you. I just used CSS to cover those extra portions showing up. The solution I used is below
.mega-menu-link { display:none !important; } #mega-menu-item--2{ display:none !important; }
Forum: Fixing WordPress
In reply to: Blog PageHi Cubecolour,
This is the link. Right now because my other featured posts are set to private they do not show up. This is the script that was provided to me. I cannot change the main featured image like the other pages for this particular page.
<?php if(has_post_thumbnail() && !is_single()) { (int) $thumb_id = get_post_thumbnail_id(); $thumb_details = wp_get_attachment_image_src( $thumb_id, 'full' ); } elseif(is_home() || is_single()) { $page_for_posts = get_option('page_for_posts'); global $wp_query; if ($wp_query->is_posts_page && has_post_thumbnail( $page_for_posts )) { $thumb_details = wp_get_attachment_image_src( $page_for_posts, 'full' ); } else { $thumb_details = NULL; } } else { if(!empty($post->ancestors)) { (int) $ancestor_id = end($post->ancestors); $thumb_id = get_post_thumbnail_id($ancestor_id); if(empty($thumb_id)) { $thumb_details = NULL; } else { $thumb_details = wp_get_attachment_image_src( $thumb_id, 'full' ); } } else { $thumb_details = NULL; } } $thumb_path = (!empty($thumb_details) ? $thumb_details[0] : '/wp-content/uploads/2013/12/main-banner-default.png'); $splashInterior = "width: 1126px; height: 344px; background: url(" . $thumb_path . ") no-repeat;"; ?><!-- end of Jessica's script --> <div id="inside-banner" style="<?php echo $splashInterior; ?>"></div> <?php }?>
Forum: Plugins
In reply to: [Collapse-O-Matic] DropDown Pushes ContentForum: Fixing WordPress
In reply to: Changing array colorsIt’s a custom form someone here at the company created before me. They just want to change this portions font color.
Forum: Fixing WordPress
In reply to: Blog inside a pageForum: Fixing WordPress
In reply to: Blog inside a pageI tried something like this in the past and nothing worked. Here is my original script, where would I place the code for it to work properly.
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Fixing WordPress
In reply to: Blog inside a pageHi Esmi,
Will this work for a custom template I designed. If so would I grab the only part of the code starting from content to the end?
Will
Forum: Fixing WordPress
In reply to: Background Images ProblemYOU ARE FREAKING AWESOME ALCHYMYTH!!! it works
Forum: Fixing WordPress
In reply to: Background Images ProblemThe thing is that I am having to rotate the images in the single pages. The link is http;//farrowtone.com/wordpress and you can click on Hello World and you will see it shows up blank when I try body.single-post tag
Forum: Fixing WordPress
In reply to: [Plugin Contact Form 7] shortcode not workingI am putting it into a DIV. It will be a contact form in the front page. I did not place any code tags around it, I just copied and pasted what you saw and thats what came up.
Any idea?
Forum: Fixing WordPress
In reply to: Link Button Not Directing ProperlyI am following this tutorial if this helps you.
https://www.wpdesigner.com/2007/02/23/wp-theme-lesson-4-header-template/