gabrielcastillo
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Styling widgetsOh and this:
#sidebar { list-style:none; }
Forum: Themes and Templates
In reply to: Styling widgetsTry this:
#sidebar ul { list-style:none; } #sidebar #categories-3 { float: left; margin: 0 20px 0 0; width: 136px; }
You can grab the file url in the media library, then create a image tag in your post
Example:
<img src="https://development.wp/wp-content/uploads/2013/02/08.jpg" alt="Image Title" />
Or
you can insert from the add media widget and select full size from the drop down on the right of the media uploader.
Forum: Installing WordPress
In reply to: Can't install WP on my Fantastico cpanelif you are installing on your public directory, clear out any files and folder. Seems like its stating that you have previous install already or you have leftover files from a previous install. Meaning you should delete all files in the directory you are installing wordpress in.
If you can get it to work with fantastico, I would do a manual install. Its really easy.
In your cpanel, you would need to create a database for your wordpress install, then you would need to ftp into your public_html directory, and upload all the files in wordpress.zip download.
Once you have uploaded all the wordpress.zip content files and folder, you can goto your domain and the wordpress install wizard will open. then you enter your information and wordpress will take care of the rest.
Forum: Themes and Templates
In reply to: About background color and font sizeYou have to edit the css background color codes.
body{ background: #727D82; } header#branding{ background: #29305C; color: #B3BDC1; }
For the twentyEleven default theme nav bar you would need to change the anchor css rules. You may need to adjust other elements like line-height or padding.
#access a { color: #EEEEEE; display: block; line-height: 3.333em; padding: 0 1.2125em; text-decoration: none; font-size:.89em; //Add font size and change to what ever you want. }
Forum: Fixing WordPress
In reply to: transparent background possible?Try adding this rule to your background style. You would have to find the parent div and target it.
Example:
#main-content { background:transparent url('myGreatBackgroundImage.jpg'); }
Forum: Fixing WordPress
In reply to: Edit the post's editing page. (width)I would say the problem would be in the functions file. maybe you can copy a new instance of the functions.php…
Change templates use twentytwelve and see if the problem is still their, if not the go back to the template you are using and copy the functions file and overwrite the old one.. you may have to redo the changes you made but this could fix the problem. When you make changes do one step at a time and you will find where you went wrong.
That is my best advice without being logged in.
Forum: Fixing WordPress
In reply to: How to make Header Image Same as Background Image?looks like the blue header background is a complete image with white at the bottom. You would have to change this image with photoshop or gimp, or some kind of image editor.
https://domestically-made.com/wp-content/uploads/2013/03/cropped-ultimatefinalbanner.pngForum: Fixing WordPress
In reply to: Edit the post's editing page. (width)What file did you edit? Seems like you changed some of the admin css style or you may have increased the zoom on your browser.
Forum: Fixing WordPress
In reply to: How to Turn Comments Back On – 3.5.1 VersionThe comments_template() function would be in the loop.php or in the template file inside the wp loop section.
One thing you can do is virtual host. I do this on my windows machine but you can change the DocumentRoot and Directory path on your mac and have the same setup.
With this setup I can goto https://wordpress.dev and get to my site.
This would go at the bottom of you http.config file.
###################################### NameVirtualHost 127.0.0.1 <VirtualHost 127.0.0.1> ServerName localhost DocumentRoot "C:/wamp/www" <Directory "c:/wamp/www"> allow from all order allow,deny # Enables .htaccess files for this site AllowOverride All </Directory> </VirtualHost> #################################### NameVirtualHost 127.0.0.1 <VirtualHost 127.0.0.1> ServerName wordpress.dev DocumentRoot "C:/www/wordpress" <Directory "C:/www/wordpress"> allow from all order allow,deny # Enables .htaccess files for this site AllowOverride All </Directory> </VirtualHost> ######################################
Forum: Fixing WordPress
In reply to: Problems Uploading Imagesif you test the upload and it works fine with twentytwelve then you know its the woocommerce theme, and like @wpyogi said, you should go to woocommerce and have them help you. They should offer support for their commercial themes.
If the upload does not work, then this might be the installation of wordpress that you are having issues with and further troubleshooting will be required.
Forum: Fixing WordPress
In reply to: Problems Uploading ImagesI would suggest making a backup of the site and running a local development server for testing. this is best practice so you will not disrupt the live site.
Backup: https://www.ads-software.com/extend/plugins/backupwordpress/
Dev server: https://www.wampserver.com/en/You can set up wamp or mamp on you local computer, then install your backup of the site.
I almost always start on my local machine for development and debugging, then I move to a demo live server the production server.
Forum: Fixing WordPress
In reply to: Problems Uploading ImagesI ask because the image you have included are in your wordpress uploads directory… meaning they have been uploaded.
Forum: Fixing WordPress
In reply to: Problems Uploading ImagesWhere are the two images coming from that you have included?