Hi, I'm looking to remove the "Home Page Link panel" please let me know what I have to do to remove this, and, if possible, replace it with an unframed image. Thx
Attached. Arrow pointing to link box that I'd like to be able to replace w/ image. 2. Also, how do I remove frame around featured slider image?
1.For your first issue Go to frontpage.php present in your theme directory and remove the code given below Code: <ul class="link"> <?php if (inkthemes_get_option('inkthemes_linkpane_heading') != '') { ?> <h2 class="linktitle"><?php echo stripslashes(inkthemes_get_option('inkthemes_linkpane_heading')); ?></h2> <?php } else { ?> <h2 class="linktitle">Your Site is faster to built.</h2> <?php } ?> <li> <?php if ( inkthemes_get_option('inkthemes_linkpanel_img1') !='' ) { ?> <img src="<?php echo inkthemes_get_option('inkthemes_linkpanel_img1'); ?>" /> <?php } else { ?> <img src="<?php echo get_template_directory_uri(); ?>/images/print.png" /> <?php } ?> <?php if (inkthemes_get_option('inkthemes_linkpanel_text1') != '') { ?> <a href="<?php echo inkthemes_get_option('inkthemes_linkpanel_link1'); ?>" class="print"><?php echo stripslashes(inkthemes_get_option('inkthemes_linkpanel_text1')); ?></a> <?php } else { ?> <a href="#" class="print">New Completely Print</a> <?php } ?> </li> <li> <?php if ( inkthemes_get_option('inkthemes_linkpanel_img2') !='' ) { ?> <img src="<?php echo inkthemes_get_option('inkthemes_linkpanel_img2'); ?>" /> <?php } else { ?> <img src="<?php echo get_template_directory_uri(); ?>/images/admin.png"/> <?php } ?> <?php if (inkthemes_get_option('inkthemes_linkpanel_text2') != '') { ?> <a href="<?php echo inkthemes_get_option('inkthemes_linkpanel_link2'); ?>" class="print"><?php echo stripslashes(inkthemes_get_option('inkthemes_linkpanel_text2')); ?></a> <?php } else { ?> <a href="#" class="admin">Admin Area</a> <?php } ?> </li> <li> <?php if ( inkthemes_get_option('inkthemes_linkpanel_img3') !='' ) { ?> <img src="<?php echo inkthemes_get_option('inkthemes_linkpanel_img3'); ?>" /> <?php } else { ?> <img src="<?php echo get_template_directory_uri(); ?>/images/home.png"/> <?php } ?> <?php if (inkthemes_get_option('inkthemes_linkpanel_text3') != '') { ?> <a href="<?php echo inkthemes_get_option('inkthemes_linkpanel_link3'); ?>" class="print"><?php echo stripslashes(inkthemes_get_option('inkthemes_linkpanel_text3')); ?></a> <?php } else { ?> <a href="#" class="home">Home Page Template</a> <?php } ?> </li> <li> <?php if ( inkthemes_get_option('inkthemes_linkpanel_img4') !='' ) { ?> <img src="<?php echo inkthemes_get_option('inkthemes_linkpanel_img4'); ?>" /> <?php } else { ?> <img src="<?php echo get_template_directory_uri(); ?>/images/siyrece.png"/> <?php } ?> <?php if (inkthemes_get_option('inkthemes_linkpanel_text4') != '') { ?> <a href="<?php echo inkthemes_get_option('inkthemes_linkpanel_link4'); ?>" class="print"><?php echo stripslashes(inkthemes_get_option('inkthemes_linkpanel_text4')); ?></a> <?php } else { ?> <a href="#" class="siyrece">100% Source Code</a> <?php } ?> </li> <li> <?php if ( inkthemes_get_option('inkthemes_linkpanel_img5') !='' ) { ?> <img src="<?php echo inkthemes_get_option('inkthemes_linkpanel_img5'); ?>" /> <?php } else { ?> <img src="<?php echo get_template_directory_uri(); ?>/images/textpicture.png"/> <?php } ?> <?php if (inkthemes_get_option('inkthemes_linkpanel_text5') != '') { ?> <a href="<?php echo inkthemes_get_option('inkthemes_linkpanel_link5'); ?>" class="print"><?php echo stripslashes(inkthemes_get_option('inkthemes_linkpanel_text5')); ?></a> <?php } else { ?> <a href="#" class="textpicture">Text & Pictures Settings</a> <?php } ?> </li> <li> <?php if ( inkthemes_get_option('inkthemes_linkpanel_img6') !='' ) { ?> <img src="<?php echo inkthemes_get_option('inkthemes_linkpanel_img6'); ?>" /> <?php } else { ?> <img src="<?php echo get_template_directory_uri(); ?>/images/ajax.png" /> <?php } ?> <?php if (inkthemes_get_option('inkthemes_linkpanel_text6') != '') { ?> <a href="<?php echo inkthemes_get_option('inkthemes_linkpanel_link6'); ?>" class="print"><?php echo stripslashes(inkthemes_get_option('inkthemes_linkpanel_text6')); ?></a> <?php } else { ?> <a href="#"class="ajax">Ajax Enhanced Experience</a> <?php } ?> </li> </ul> Sending image for reference Remove code from line number 312 to 390. Now, replace it with code Code: <a href="Enter your URL"><img src="Enter your image address"/></a> Sending image for reference 2.For your second issue Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .flexslider .slides { border: none; } .flexslider { border: none; background:none; } This will solve your issue.