9bode
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Website Hacked with SQL InjectionMake sure you are not using default login user id “admin” on wordpress!
Also you can install limited login attempt plugin to limit the user login to the site. Plugin is available for free on wordpress repository.Forum: Themes and Templates
In reply to: [Landscape] Widget font sizeHey writelife,
Are you still searching for the solution?
add css in your widget text <p style=”font-size: 14px;”>… your text</p>
hope that helps!
Forum: Themes and Templates
In reply to: [WPstart] BackgroundDo you have a child theme for your site?
If you do not, then please create a child theme first!
Then in your css file put the following codes to have the background color of your choice for each section!#header {
background-color: #a7e2e5;
}#nav {
background-color: #a7e2e5;
}#main {
background-color: #a7e2e5;
}#footer {
background-color: #a7e2e5;
}If you like to have the background image to appear instead of the color, then replace above lines
background-color: inherit;with background-color: inherit;
that should do the trick!
Hope that helps!
9bodeForum: Themes and Templates
In reply to: [MesoColumn] color categoriesIts ok! as long as it’s working then no need to post the link.
Cheers!
9BodeForum: Themes and Templates
In reply to: [Simple Catch] how make my website using simple catch theme?Are you creating wordpress.com site or you are installing wordpress on your server?
It is available on www.ads-software.com, if you are installing the wordpress on your hosting!
https://www.ads-software.com/themes/simple-catchForum: Themes and Templates
In reply to: [Virtue] Menuhey danni468
first of create a child theme
then in the .css file add the following codesf-menu li {
margin-left: 30px; /* add the number of space you like */
}Forum: Themes and Templates
In reply to: [MesoColumn] color categoriestry putting !important at the end of background-color
#main-navigation.sf-menu a:hover {
background-color: #C90D31 !important;
}could you please post the link?
Forum: Themes and Templates
In reply to: [MesoColumn] color categoriesHave you created a child theme?
If not try creating a child theme.
Then put the code in css file.hope the helps!
Forum: Themes and Templates
In reply to: [Sugar and Spice] Page titlesit can be done with custom codes in the child theme! Otherwise it cannot be done!
Some times themes have option to hide the page title on the page itself or in the theme option page.
Forum: Themes and Templates
In reply to: [Sugar and Spice] Page titlescould you please post the link
Forum: Themes and Templates
In reply to: [JustWrite] Text font sizein your custom css file
/* title */
.post-template-1 .title, .single-template-1 .title {
font-size: 26px; /* change the font size to your liking */
}/* Paragraph */
.post-template-1 p {
font-size: 20px; /* change the font size to your liking */
}hope this helps
Forum: Themes and Templates
In reply to: [Fruitful] Change the padding?.home .hentry {
padding-right: 20px !important; /* add !important */
}Forum: Themes and Templates
In reply to: [Undiscovered] How to make header unmoveable?use the bottom css code in your custom css file, change the #header to your actual header id!
#header {
position: fixed;
}can you post your link?
Forum: Themes and Templates
In reply to: [Virtue] menu coloursin your child theme .css file, make sure you specify the template name as parent theme name
Forum: Themes and Templates
In reply to: [Hueman] Comment box not showing up on postsselect any one page, then click on admin bar “screen option” then make sure you have discussion box checked!
If you don’t then your comments will not show up on the page!hope that helps