Extech
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom CSS Code Hide Tags in Postsxspan.tag-links {
display: none;
}Forum: Plugins
In reply to: menu with scrollbar on sidebarI am happy that i can help you.
Cheers
Forum: Plugins
In reply to: menu with scrollbar on sidebar.sidebar .widget_nav_menu ul li a:before{content:” ” !important;}
Can you try this.
Forum: Plugins
In reply to: menu with scrollbar on sidebarWhere you have added the css. Its not reflecting anywhere?
.menu-tafsir-container {
max-height: 84px;
overflow-y: auto;
}.side-nav-right .side-nav {
max-height: 100px;
overflow-y: auto;
}Scroll bar only be visible when it will be more than the mentioned height.
Please let me know if its not working.
ThanksForum: Fixing WordPress
In reply to: scaling menu for smaller screen sizesYou can use the different media screen for different screen resolution.
@media screen and (max-width: 860px) {
/* your css here */
}Forum: Plugins
In reply to: menu with scrollbar on sidebarHi
Please place this css code in your .css file..side-nav-right .side-nav {
max-height: 200px;
overflow-y: auto;
}Please let me know if its not working.
ThanksForum: Fixing WordPress
In reply to: css background-image for main content area in WordPressWhat I know is, it is simple div without having anything. So it will not get the height until we have put something in it.
And if we don’t have anything we can set the height through css.
May be I am wrong in logic but that is what i know.
Hopefully this make sense.
Cheers
Forum: Fixing WordPress
In reply to: css background-image for main content area in WordPressHi
You can set the min-height to your id#tour-icon{min-height:200px; /*according to your need*/}
Let me know if its working or not.
Thanks
Forum: Themes and Templates
In reply to: [Theme: Adelle] How do I wrap my blog title posts?Add this to your css
.yourclass {white-space: normal !important;}If this not work please share url of your site.
Thanks
Forum: Plugins
In reply to: menu with scrollbar on sidebarYou can do this by css. Can i have your url so that i can code css for this?
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] CSS Styling Input fieldsinput, textarea, select {
border: 1px solid #CCC;
background: #F5F5F5;
}Forum: Fixing WordPress
In reply to: css background-image for main content area in WordPresscan i have the url
Forum: Themes and Templates
In reply to: [Pictorico] Search Box Font🙂
Forum: Themes and Templates
In reply to: [Pictorico] Search Box FontThan you can try this
.header-search input {font-family: cursive;}
Forum: Themes and Templates
In reply to: twenty-fourteen remove underlined linksHi Hank,
Find this text in your css
a {
color:
text-decoration: none;
}This is the wrong one. Replace it with the below css.
a {
color: initial; /*or any color which you required */
text-decoration: none;
}