Andrea Garza
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't open my site after editing .htaccess filealso in settings / general
WordPress Address (URL)
Site Address (URL)you should set them to include www in your domain, that SHOULD force www depending upon what host you are using, without having to put anything at all in the .htaccess file
Forum: Fixing WordPress
In reply to: Can't open my site after editing .htaccess fileyou should use this
RewriteEngine on RewriteCond %{HTTP_HOST} !^www\.yoursite\.com RewriteRule (.*) http://www.yoursite.com/$1 [R=301,L]replace yoursite with your domain name
Forum: Fixing WordPress
In reply to: My website turned white and all info is gonesure thing
Forum: Themes and Templates
In reply to: [Matheson] Change font-style of taglinesure thing, have fun
Forum: Fixing WordPress
In reply to: Making a box bigger and deleting another box?check your email, issue
Forum: Fixing WordPress
In reply to: Making a box bigger and deleting another box?just got it
Forum: Fixing WordPress
In reply to: Making a box bigger and deleting another box?I’m only avail another 15 mins or so so if you want help from me it has to be now .. sorry
Forum: Themes and Templates
In reply to: [Matheson] Change font-style of taglineit should be
.site-description { color: #c1a55e !important; font-weight: bold !important; }its font-weight not font-style .. that should fix it up for you
Forum: Fixing WordPress
In reply to: My website turned white and all info is gonethat’s confusing .. so you PURCHASED hosting from Dreamhost? Yes? If so good, you can get to your .htaccess file … login to your control panel at dreamhost, click on file browser, go to the www folder, put a checkmark by the show hidden files (if it gives you that option) and then “view” the .htaccess file there
Forum: Fixing WordPress
In reply to: My website turned white and all info is goneare you self hosted or hosted on wordpress.com?
Forum: Fixing WordPress
In reply to: Making a box bigger and deleting another box?look me up online andreagarza.com and fill out my contact form … I don’t want to put my email up here for spam reasons.
Forum: Fixing WordPress
In reply to: My website turned white and all info is goneGo to your .htaccess file via ftp (show hidden files)
Look for something like this:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPresswhat does your say?
Forum: Fixing WordPress
In reply to: My website turned white and all info is goneprobably you got a warning that said your .htaccess file was not updated when you updated the permalink structure but didn’t notice it
put your permalink structure back how it was
then go to settings < reading .. this is where you set your home page, not the permalinks.
Forum: Fixing WordPress
In reply to: Making a box bigger and deleting another box?I’d have to actually login to see your theme to see which template your page is using and I can edit it for you.
The green box and orange box are part of your template file. You have to edit the template to get rid of the box and replace it with a large green one.
Forum: Fixing WordPress
In reply to: "home" on first pageYou have your home page titled “home” therefore it will show up as “home” … If you don’t want to change it due to issues in the navigation titles, then you can go to your page.php template and where it says something along the lines of
<h1><?php the_title(); ?></h1>remove that portion, and save/upload the file again.