nhunt1
Forum Replies Created
-
Any updates on this issue. I just downloaded this plugin and I am having the same issue. I’ve attempted the same procedure listed above, but no dice.
Forum: Fixing WordPress
In reply to: Remove Featured Image From Appearing Inside PostI tried deleting snippets of code on the single portfolio php using the Virtue theme but I couldn’t get it to work. I ended up commenting out the one line that references $post_id = get_post_thumbnail_id() which seems to work.
Snippet of code that was updated:
<?php } else if ($ppost_type == ‘none’) {
$portfolio_margin = “kad_portfolio_nomargin”;
} else {
// $post_id = get_post_thumbnail_id();
$img_url = wp_get_attachment_url( $post_id);
$image = aq_resize( $img_url, $slidewidth, $slideheight, true ); //resize & crop the image
if(empty($image)) {$image = $img_url; }
?>Forum: Themes and Templates
In reply to: [Theme: Virtue] Drop Down Menu Font SizeScratch that. Paste this into the Advance Settings section and change whatever lines you need.
#nav-main ul.sf-menu ul li a, #nav-second ul.sf-menu ul li a {
width: auto;
display: block;
padding: 10px;
color: #555;
text-align: left;
font-size: 12px;
}Forum: Themes and Templates
In reply to: [Theme: Virtue] Drop Down Menu Font SizeAny word on this fix? I’ve tried the following CSS code in the Advance Settings section but I have not yet been able to get the dropdown menu font larger.
ul.sf-dropdown-menu { font-size: 24px; }
Thanks