Extech
Forum Replies Created
-
Forum: Themes and Templates
In reply to: CSS Differences in BrowsersCan I have the url of your site.
Forum: Plugins
In reply to: Contact Form 7 Field SizesYou can put this code into your css
input[type=tel]{
width: 80%;
}Forum: Plugins
In reply to: Resize Contact Form 7 FieldsI have examined your css but this code does not exist in the css file. May I know where you have put the code. May be your files not saving the code if you are saving it via admin panel of wordpress.
Forum: Plugins
In reply to: Resize Contact Form 7 FieldsYou can edit you css or simply put this code into your css.
input[type=text], input[type=tel], input[type=password], input[type=email], textarea, select {
width: 90%;
}Just let me know if its working or I will try something else.
Forum: Networking WordPress
In reply to: Delete the main siteYou can do it in just two steps (I hope)
a) Put every folder and files of main domain to subdomain.
b)Do not need to delete the db you can simply change the url in the db so that it will work fine on the subdomain.
Forum: Fixing WordPress
In reply to: Revolution Slider hides the menuYou can put the following css to your style.
div#fullwidth {
z-index: 1;
position: relative;
}div#full-menu {
position: relative;
z-index: 99;
}Hopefully this will work 🙂
Forum: Themes and Templates
In reply to: WordPress twenty-thirteen color changediv#primary {
background: #FF0404;
}Change your color according to your requirement.
Forum: Installing WordPress
In reply to: help getting rid of spacing at top of site when printedSolution for your site is
One I will recommend this
.site-header {padding-bottom: 0;}
.site-content {margin-top: 0;}
.entry-header {margin-bottom: 0;}Two This is also a solution but not sure if it will create any problem in small screens
div#main {margin-top: -57px;}
You can change the css according to your need.