Extech
Forum Replies Created
-
Forum: Themes and Templates
In reply to: twenty-fourteen remove underlined linksHi saundramondragon,
You can try this
.entry-content a {
text-decoration: none;
}let me know if its not working.
Thanks
Forum: Themes and Templates
In reply to: [Pictorico] Search Box Font.mc4wp-form input[type=email]{
font-family: Arial, Helvetica, sans-serif !important;
}Change the font-family according to your requirement.
Thanks
Forum: Themes and Templates
In reply to: [Minamaze] How to move Navigation below Slider?Hi Sandy,
.nav-wrapper {
position: relative;
top: 359px;
}#main-slider {
top: -45px;
position: relative;
}Let me know if its not working for you.
Thanks
Forum: Themes and Templates
In reply to: [Minamaze] How to move Navigation below Slider?Here is the solution buy its better if you can edit the core files.
div#slider {
position: relative;
top: -70px;
margin-bottom: -40px;
}#header {
padding: 0;
position: relative;
top: 349px;
z-index: 999999;
}Please let me know it its working
Forum: Themes and Templates
In reply to: Custom Theme – Images are not displaying<link type=”text/css” rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_directory’)?>/css/yourcssfilename.css”>
Put this on you header.php file inside the head tag. Make sure your path is correct that is under css folder and replace with your css file name.
Thanks
Forum: Themes and Templates
In reply to: [Minamaze] How to move Navigation below Slider?Can i have the url of your website?
Forum: Themes and Templates
In reply to: Custom Theme – Images are not displayingHi
I am not a developer but as far as i know there is nothing wrong with your css. The problem i found in your coding is the image path.
Your path : http://tastebuds.netai.net/wordpress/wp-content/themes/TasteBuds/images/images/INDEX_r3_c6.png
Right Path : http://tastebuds.netai.net/wordpress/wp-content/themes/TasteBuds/images/INDEX_r3_c6.png
There is extra images/images in your images path.
Hopefully this will help you.
Thanks
.fb_top {
width: 62%;
position: absolute;
top: 71px;
right: 0;
}@media only screen and (max-width: 719px) {
.fb_top {width: 77% !important;
position: relative !important;
right: 0 !important;
top: 0 !important;
text-align: center;}
}Try this … let me know it its working or not.
Thanks
.mp_top {
margin: 0 auto;
width: 50%;
}Forum: Themes and Templates
In reply to: Responsive images same heightHi
You can use the min-height for screen resolutino less than 767px.
img {
max-width:100%;
height:auto;
min-height: 215px;
}Forum: Plugins
In reply to: Contact form 7 not showing properlyHi
Just try to overwrite it with !important in css
like
#fancybox-wrap {width:500px !important;}
Or you can try jquery to overwrite the valuesHopefully it will help you.
Forum: Plugins
In reply to: Contact form 7 not showing properlyForum: Themes and Templates
In reply to: [Virtue] FooterHi
Can I have the the url of your site.
Thanks
Forum: Themes and Templates
In reply to: Bracket between reply form and footerHi
Try to find out in page.php
it should be there.Thanks
Forum: Themes and Templates
In reply to: [Theme: NewsPro] I need to move my secondary menu. CSS Help.logo {
float: left;
margin: 2px 0;
position: relative;
z-index: 99999;
}.header-right {
float: none;
}Please put the above code in your stylesheet and let me know if it works.
I would like to know what you have put in the <div class=”header-right”></div> because its showing nothing and creating all the mess.