accuwebhosting
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: You do not have sufficient permissions to access this page.Hi Syd,
First, Verify if you have an issue with the “www”. Try to access your wp-admin page with and without the www.
Edit wp-config file and add 2 lines of code at the bottom. Make sure that you add the exact domain as worked in the past, if you used a simple domain.com without www then delete the www from the code and don’t forget to change “yourdomain” with your website name.
define(‘WP_HOME’,’http://www.yourdomain.com’);
define(‘WP_SITEURL’,’http://www.yourdomain.com’);Thanks,
Forum: Fixing WordPress
In reply to: DomainName Converting to IP AddressHi Ashish,
Can you provide exact URL where you are receiving 500 error?
Thanks,
Forum: Fixing WordPress
In reply to: DomainName Converting to IP AddressHi Ashish
Please make sure that “Site Address (URL)” and “WordPress Address (URL)”
1) Both settings should include the http:// part and should not have a slash “/” at the end.
2) You have correctly typed it …Home URL seems incorrect here.
site_url=http://salonioil.com
home=http://saloinoil.comAlso, you will have to open each WordPress theme file and search for any manually entered references to your old domain name and replace it with the new one. Look for specific hand coded links you may have entered on the various template files such as the sidebar.php and footer.php.
Hope it helps,
ThanksForum: Themes and Templates
In reply to: positioning sidebars on homepageHi rahulurs,
Figure out the following code from the style.css file of your theme …
#sidebar .widget { width:300px; margin:0 0 25px 0; }
#sidebar-inner .widget { width:160px; margin:0 0 25px 0; }#sidebar-inner .widget { width:340px; margin:0 0 25px 0; }
#sidebar-inner .sidebarsub .widget { width:160px; margin:0 0 25px 0; }Here, you can change the values of ‘width’ attribute as per your requirement.
After making changes, reload style.css file.
Hope it helps you.
Thanks.
Forum: Themes and Templates
In reply to: Widget inside an pageHi Altermann,
You can place Widgets on your theme if your theme supports it.
To put the Widget onto the theme perform the below mentioned steps:
1. Log in to Admin panel
2. Select ‘Widgets’ option from the ‘Appearance’ menu
3. You can see the list of available Widgets. Drag and drop any of the Widgets from the left pane to the right paneHope it helps you.
Thanks.
Forum: Themes and Templates
In reply to: Seeking a Template(s)Hi Brian90638,
You can search the themes as per your requirements from the following URL:
http://www.bestwpthemez.com/From this site I am suggesting you to check out the below mentioned theme:
Synchro Left Sidebar Black WordPress ThemeHope it helps you.
Thanks.
Forum: Themes and Templates
In reply to: Issues with styling content within a postHi waltspence,
Can you please specify the name of your website where you are facing this issue so, I can help you further.
Thanks.
Forum: Themes and Templates
In reply to: Header image for the minimalist themeHi 123Andreas,
In the snippet you have only specified,
<div id=”page”>
<div id=”header”>.You also need to use the “class” attribute with <div> … </div> tags.
For example,-
<div class=”header”>I hope it helps you.
Thanks.
Forum: Themes and Templates
In reply to: Finding the Code to Widen my Page WidthHi mugatu3,
I can see that the pages of your site are displaying properly.
Please check it at your convenience.
Thanks.
Forum: Themes and Templates
In reply to: NewsPress Theme TroubleHi cbaier,
Can you please provide me the name of your website for which you are using NewsPress Theme so, I can check it further.
Thanks.
Forum: Themes and Templates
In reply to: Finding the Code to Widen my Page WidthHi mugatu3,
Please try to search out the style attribute ‘.entry-content’ from the erudite.css file of your theme.
Change the values of this attribute according to your requirements.
After that save the changes and reload the file.
I hope that helps you.
Thanks.
Forum: Themes and Templates
In reply to: Customizing Oulipo HeadingHi learninghand,
Please try the following example code in the style.css file of your current theme …
h2 {
font-size: 65px;
margin: 0px;
padding: 0px;
width: 100%;
text-align: center;
}Here, in place of ‘h2’ you can write the name of class used in your theme’s style.css file for heading text.
After making changes reload the style.css file of your theme.
I hope it helps you.
Thanks.
Forum: Themes and Templates
In reply to: css overflow problem. please help!!!!Hi,
If it doesn’t make any changes from style.css then try to make same changes in function.php file.
Hope it helps you.
Thanks.
Forum: Themes and Templates
In reply to: HeaderHi,
You can refer http://www.bestwpthemez.com website for Free WordPress themes.
You can download the themes with free of cost.
Thanks.
Forum: Themes and Templates
In reply to: Vibrant WordPress Theme 1.0Hi,
Figure out this line …
background: url(images/logo.gif) no-repeat;
Here, change the name of the image.
For example,
background: url(images/banner.jpg) no-repeat;
Remember that the image should be saved inside images folder.
I hope you can solve it.
Thanks.