AngkorDesign
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pinnacle] Nav drop downHello,
try putting this in your custom CSS or stylesheet.css in the end
#menu-main .sf-dropdown { height: 100px; }Hope it will solve your issue 🙂
LukaForum: Fixing WordPress
In reply to: header image for Osiris themeadd this to Custom CSS,
#branding {
background-size: 100%;
}Forum: Fixing WordPress
In reply to: Slider image position in Customizerthis thing here:
.carousel>.center-slides-enabled>.item>.carousel-image img{
position: static;
}try adding this to custom CSS if will fix your problem.
Forum: Fixing WordPress
In reply to: header image for Osiris themetry rather this:
background-size: 100%;
Forum: Fixing WordPress
In reply to: Menu Image Hover IssueSince it moved everything, it must have been something like missing semicolon. 🙂
NP, and have a nice day!
Forum: Fixing WordPress
In reply to: Centering Featured ImageYes, that is true – at next update it will be lost, and in that case solutions above will work 🙂
Luka
Forum: Fixing WordPress
In reply to: Centering Featured ImageThrow it in the end of the style.css then.
Forum: Fixing WordPress
In reply to: Centering Featured ImageYes, preferably into the custom CSS.
Forum: Fixing WordPress
In reply to: Centering Featured ImageIf i understood well what should be changed, this should work:
.post-thumbnail{
text-align:center;
}Forum: Fixing WordPress
In reply to: Menu Image Hover IssueWeird, because when i change it in Chrome dev tools from
#menu-item-4269 a{
background: url(http://crvreview.info/wp-content/uploads/2015/01/logo5.png) no-repeat;
}to
#menu-item-4269 a{
background: url(http://crvreview.info/wp-content/uploads/2015/01/logo5.png) no-repeat !important;
}it stays there. Otherwise i would not know what is causing this.
Forum: Fixing WordPress
In reply to: Menu Image Hover IssueCheap solution,… where you have inserted the background, add !important,
in your case:background: url(http://crvreview.info/wp-content/uploads/2015/01/logo5.png) no-repeat !important;