Kumar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 412 precondition failedSame problem . Please someone come up with a solution
Here we go,
First you need to change the Navigation bar color to change change this in style.css file .
Then you have to make custom menus , so that will link to other pages of your website.
I find a separate content to the left of your website , if you need that you will have to add a left sidebar.
Change your header to that of your website. A little css work is needed.
This might be little time consuming process.Forum: Themes and Templates
In reply to: Custom community theme slideshow doesn't rotateMake sure you have enough posts and you wait for the time to entered slider to shift to next post.
Please post your site url to examine your issue.Forum: Themes and Templates
In reply to: Need help with sidemenu for sunshinestories.comYou need to add a left side bar to theme . Then You have to place a text widget for Images or Logo and Blogroll to have links to other blogs and websites.
I think this tutorial to create sidebar will be helpful to you.
https://www.chidimar.com/create-custom-sidebar-in-wordpress-blog/Forum: Themes and Templates
In reply to: RSS not workingThrough ftp view all your source files and look for blank spaces . This link might help you solve your problem. https://www.ads-software.com/support/topic/no-rss-xml-parsing-error
Forum: Themes and Templates
In reply to: [ChocoTheme] [Theme: ChocoTheme] Pic of Blog Writer – requestIf your requirement is just to have your photo site wide . This solution might be helpful.
Go to your dashboard
under Appearances you will find Widget
Find the text widget add this to your sidebar
Edit your text Widget with a proper title say MY Blog
Insert your image using the<img src= " Your image location"/>
and save the widget.Forum: Themes and Templates
In reply to: [ColorWay] colorway theme incompatibilty with IE??I don’t get your first question.
But for your second question this might helpful
Using FTP go to your themes folder and find footer.php file
<p><a href="https://www.inkthemes.com">Designed & Coded by InkThemes.com</a></p>
you will find this line . Just edit the words between<a href="https://yourwebsite.com"> ANything you wish to display</a>
. However, It is a good practice to credit the author of the theme.Forum: Themes and Templates
In reply to: the Sides of pagesYou have to add two sidebars to your theme and add text widgets to the sidebar to place your advertisement columns.Visit this link https://www.blogohblog.com/adding-extra-sidebar-to-your-wordpress-theme/ and some posts on our forum to know about adding side bars.
Forum: Themes and Templates
In reply to: Can I purchase a theme with these features?Most of the themes available does support all these functionalities but you must be sure that you know the fundamentals to customize to your needs.
One more suggestion :- If someone is selling you a theme with these features just make sure you don’t buy it for huge sum.Because all your requirements are very basic and won’t cost much.Forum: Themes and Templates
In reply to: How can I change links' colorTo change your link colors , to Appearances in your dashboard and using editor find these lines in style.css
a {
color :#ffffff;
}
a:hover
{
color :#000000;
}
Just find the lines with a and edit the colors with the hexadecimal values
Can you be more specific on your second question ?Forum: Themes and Templates
In reply to: Background image in twentyten themeGo to style.css in your editor and find the wrapper class
#wrapper {
background-image:url(‘smiley.gif’);// The image location which you want to appear must be replaced with smiley.gif
background-repeat:no-repeat;
margin-top: 20px;
padding: 0 20px;
}
This should work mostly , come back if you have some issues with this code.Forum: Themes and Templates
In reply to: 1 issue with Humble ThemeIt depends on two basic aspects . Cost and Support. If you looking for high end supportive hosting go for hostgator. Else you many other hosting providers available on the internet.
Forum: Themes and Templates
In reply to: Creating columns in Notepad themeOn examining your issue i thought these two steps would be appropriate. I just found that your theme supports a footer area . Add three text widgets to the footer area so that it can be easily distinguished for further edits. Or else go with a single text widget and add these CSS . Just to make sure if you are a beginner start with this css tutorial https://webdesign.about.com/od/csstutorials/ss/css_layout_sbs.htm
Forum: Themes and Templates
In reply to: Changing the font/colour of image captionsIf you want both your font and color to be customized try this code .wp-caption {
border: 1px solid #ddd;
font : 13px
text-align: center;
background-color: #000000;
font:30px “Helvetica Neue”, Helvetica, Arial, sans-serif; // Edit the font with your choice but make sure the font is installed on to the directory.
color:#ffffff;// Edit your choice of color with the relevant hexadecimal value.
padding-top: 4px;
margin: 10px;
}Forum: Themes and Templates
In reply to: Changing the font/colour of image captionsIn your style.css of your theme folder.
.wp-caption {
border: 1px solid #ddd;
text-align: center;
background-color: #000000;
color:#ffffff;// Edit your choice of color with the relevant hexadecimal value.
padding-top: 4px;
margin: 10px;
}