Jyotirmaya2020
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Suspected hacking of my site from GWMTafter cleaning everything & installing totally fresh copy Google webmaster Tools shows the same that
http://bramhapur.com/: Suspected hackingGoogle has detected that your site may have pages added by a third party. These pages may contain spammy or malicious content which violate our Webmaster Guidelines.
Typically, the offending party gains access to an insecure directory that has open permissions. Many times, they will upload files or modify existing ones, which then show up as spam in our index.
Sample URLs: http://bramhapur.com/191391/ http://bramhapur.com/191391/DFDDDDD-007-aoh.html http://bramhapur.com/191391/DFDDDDD-062-ekm.htmlForum: Fixing WordPress
In reply to: Suspected hacking of my site from GWMTI want to do complete clean up everything, what should I do ?
Please tell me procedurestried all of the above still not working 🙁
dont know why its not workingcan you please check my source code & help me ?
Ya have removed the h4 from the
h4 #footer-sidebar, .widget-tittle {
color: green;
font-size: 24px;
}still it didn’t work 🙁
when i used the below code of yours I found that entire theme’s widget color changed
#footer-sidebar, .widget a:link {
text-decoration: none;
color: black;
}
#footer-sidebar, .widget a:link, .widget a:visited {
text-decoration: none;
color: #259CD8;
}
#footer-sidebar, .widget a:hover, .widget a:active {
text-decoration: underline;
color: red;
}but when I removed the COMMA after the #footer sidebar then I found that its working, after modification the code looked like this
#footer-sidebar.widget a:link {
text-decoration: none;
color: black;
}
#footer-sidebar.widget a:link, .widget a:visited {
text-decoration: none;
color: #259CD8;
}
#footer-sidebar.widget a:hover, .widget a:active {
text-decoration: underline;
color: red;
}but the below code isn’t working
h4 #footer-sidebar, .widget-tittle {
color: green;
font-size: 24px;
}the footer sidebar widget title color is not changing, its still looking black
http://1.bp.blogspot.com/-y4wTzOImzkY/VWW_IHF8jQI/AAAAAAAAESs/_Ag5sexapk0/s1600/Capture.PNG
Hello Tahoe thanks for your valuable help, everything is working except
h4 .widget-tittle {
color: green;
font-size: 24px;
}this coding isn’t working
and if I am using the code
.widget a:link {
text-decoration: none;
color: black;
}
.widget a:link, .widget a:visited {
text-decoration: none;
color: #259CD8;
}
.widget a:hover, .widget a:active {
text-decoration: underline;
color: red;
}then the entire widgets of the theme’s design changes accordingly, I want to change the color size font size of the footer-sidebar widget only not of the entire theme
I tried a code something like this to change the color
footer .wrapper{
color:#fff;
}I want to change the footer widget title color to white & underlined & want to change the font size of the footer widget etc