Extech
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Class and Div in cssYou can list them down as many as you want but in my opinion you are making it complicated.
You can simply target the divs by using classes.
It will not effect your responsiveness. Because can re-write the css in the media screen.
Forum: Plugins
In reply to: [CSS] Widget text too big.widget-wrap {
font-size: 14px;
}You can put this css in your plugin or in main stylesheet. Change the font-size according to your need.
Forum: Fixing WordPress
In reply to: edit hover colorsa:hover {color:#669900}
You can put this code in you stylesheet.
Forum: Fixing WordPress
In reply to: Class and Div in cssYes this is okay to use in this way.
Forum: Plugins
In reply to: [Compact Archives] CSS needed.entry-content a {
font-weight: normal;
}Cheers
Forum: Fixing WordPress
In reply to: Make image full width on pageHi
You can try this css
1.) body {
body {
background-position: 78px 80px;
}(This is the way to position your background)
2.)I have just put the image in the url if this work you can download this image from there
body {
background: url(https://s3.amazonaws.com/fvd-data/notes/237076/1407516801-P4iLZ2/screen.png);
background-repeat: repeat;
background-position: 0px -1px;
}Sorry in advance if non of them work for you 🙂
Forum: Fixing WordPress
In reply to: Trying to change link color – but nothing seems to work!Try to find this css in the header.php or may be you can change it from admin panel>theme options.
Try to change the color from there. Quite possible that this will work.
Forum: Themes and Templates
In reply to: need help in aligning logo in headerActually its complicated or may be not 🙂
You have to create widget in the function.php and than you have to call the function in header.php.
Than put some widget in the admin panel and its done.
You required knowledge of php to do it comfortably.
Hopefully this will work for you.
Thanks
Edit it or you can put it in the last of you stylesheet.
Forum: Themes and Templates
In reply to: need help in aligning logo in headerHi
You can put this css in your sylesheet.
.site-image {
display: block;
margin: 7px 0 7px 10px;
max-height: 400px;
}Or
Simply change the margin:0 auto; to margin: 7px 0 7px 10px; in line no 558Cheers
Forum: Themes and Templates
In reply to: Can't Get Font-Face to Work!Hi
Don’t know what you have done wrong but I have another way to do it.
Step 1
Put the unzipped fonts and stylesheet (generated by webkit) in a folder and put the same folder in the main theme (or child theme if you created).Step 2
Import the css to your main css (in your case its style.css).@import url(‘/fonts/fonts.css’);
Make sure you have the right path to it
http://www.cssnewbie.com/css-import-rule/#.U-Pi6q2SyNIRefresh you browser.
Hopefully it will help you.
Hi
You can add following css to your stylesheet (in your case its style.css which is in your theme).
.homepost-heading h2 a {
color: #000;
font-size: 20px;
}You can put the font-size according to your need.
Cheers.
Forum: Themes and Templates
In reply to: [Vantage] Removing the logoYou can not remove the logo from header through CSS. You can hide it by using the property ‘display:none;’
If you want to remove it completely you can remove the code from header.php (generallly).
Thanks.
Forum: Fixing WordPress
In reply to: Revolution Slider hides the menuYour Welcome,
Please close the topic.
Thanks
PawanForum: Themes and Templates
In reply to: Help me center the websiteHi Dashel
Can you post the url of your site.
Thanks