fgirach09
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: failed to load content csshi
i used migrate db for database transfer
i place my sub theme in my root directory.
previously i did many projects with same process but i didn’t get any issue like this.thanks
Forum: Fixing WordPress
In reply to: Index page missing theme, and links not workinghi
This Should be permalink issue
Please go to you admin Settings > permalink and click on save changes button.
Thanks
FarhanForum: Themes and Templates
In reply to: [Customizr] How to get rid of the line at bottom of sidebar?hi
if you pass position absolute to any div or section it will display but it didn’t consider width of parent div or section. actually all three lines was at same place overlapping each other.
the logic behind this was position relative create boundary of absolute section so it cant go beyond the relative section
Thanks
Forum: Themes and Templates
In reply to: [Ignis] Social Buttons / no social logohi
in your style.css find (line number 903 for banner)
.ignis-hero-area {
background-color: #b14419;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: top;
z-index: 11;
margin: 0 45px;
}there change “background-color: #b14419;” to anything else you like
same for socila “.social-navigation li” line number 1321thanks
Forum: Themes and Templates
In reply to: [Customizr] How to get rid of the line at bottom of sidebar?hi
In your left sidebar aside h3(widget-title) contain after which create the line. maybe this line for heading underline
If you want to keep it as heading underline please make .sidebar .widget-title as position:relative
.sidebar .widget-title {position:relative!important}and you want to remove add below css code in your style.css
.left.sidebar h3.widget-title:after {
display: none;
}thanks
Forum: Themes and Templates
In reply to: [Ignis] Changing the colour of Bannershi
in your style.css find (line number 903 for banner)
.ignis-hero-area {
background-color: #b14419;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: top;
z-index: 11;
margin: 0 45px;
}there change “background-color: #b14419;” to anything else you like
same for socila “.social-navigation li” line number 1321thanks
Forum: Themes and Templates
In reply to: [Ignis] Changing the colour of Bannerscan you please provide link
Thanks
Forum: Themes and Templates
In reply to: [Ignis] Social Buttons / no social logohi
Can you please provide link so i can review and help you
Thanks
Forum: Themes and Templates
In reply to: [Customizr] How to get rid of the line at bottom of sidebar?can you please provide Link
Thanks
Forum: Fixing WordPress
In reply to: CSS or anything to remove ‘zoom over hoving the image’ funtionality.Hi
there are ‘transform: scale(1.02);’ given on .entry-image:hover please make ‘transform: scale(1);’ the zoom will be off
thanks
Forum: Fixing WordPress
In reply to: Hide menu items – mobilehi
by using css you can hide, apply class to li from admin and in css media give “display:none;”
thank
Forum: Fixing WordPress
In reply to: mouse-over picturehi
In css please use transform scale
.module-image.circle .image-wrap img:hover {transform: scale(1.1);-webkit-transform: scale(1.1);-moz-transform: scale(1.1);}
and with smooth animation use transition
.module-image.circle .image-wrap img:hover {transform: scale(1.1);-webkit-transform: scale(1.1);-moz-transform: scale(1.1); transition: all .3s ease-in-out;-moz- transition: all .3s ease-in-out;-webkit- transition: all .3s ease-in-out;}
thanks
Forum: Fixing WordPress
In reply to: WordPress blog post appearing to be centralizedin your root style.css past
.post.excerpt {text-align:left;}
it will resolve your issue
Thanks
Forum: Themes and Templates
In reply to: [Customizr] Child themehi,
i think you will find your all answer regarding child theme from below link…
https://codex.www.ads-software.com/Child_Themes
Thanks.
Forum: Themes and Templates
In reply to: How to change line colors (between articles)hi;
please neglect previous post,change color in .hentry border-bottom
best regard
farhan