Te Calleja
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: YouTube Videos Won't EmbedThat happened to me before, I think some plug ins mess up with the auto-embed feature. To work around this, I just used the embed shortcode… you just put the youtube url between [embed] [/embed]
Forum: Themes and Templates
In reply to: Ahhhh right margin!that’s odd… i don’t see any vertical line running through your widgets?
Forum: Themes and Templates
In reply to: No Clue About How to Change Font Sizei’m not too sure, but try to look for
.title h1
in your css file and reduce the font-size till you get the size you want.
Forum: Themes and Templates
In reply to: Ahhhh right margin!are you referring to that horizontal line below the post title (recent posts, “iPhone 6 – Possibility of a Cord-Free Capabilities & Wireless charging!”)?
if so, find this on your css file:
.widget ul li {
border-bottom: 1px solid #ccc; /*remove this line*/
display: block;
padding: 8px 0;
color: #666;
}Forum: Fixing WordPress
In reply to: Post-migration access and redirect problem1. log in to your cpanel and go to phpmyadmin.
2. go to the wp_options table of your wordpress database, look for option_name siteurl and change the option_value to your new site address.
3. look for option_name home and change the option_value to your new address.if you are comfortable running sql commands on phpmyadmin, you can just call up all instances of your old site address and update it with the new one.
hope this helps!
Forum: Fixing WordPress
In reply to: Help Please!httpd.conf is your apache configuration file. if it is hosted locally — i assume you’re using wampserver? — click on the wamp icon on your taskbar tray, select Apache, httpd.conf.
Forum: Fixing WordPress
In reply to: 404 Not Found Strange Websitei had a similar problem about a year ago. please check my post, maybe one of the suggestions will help resolve your problem. http://ww.wp.xz.cn/support/topic/wp-admin-not-found-error
Forum: Fixing WordPress
In reply to: Can't get my form to worki think this part
13. <select name=”sendto:”>
should not have a colon. it should read <select name=”sendto”>
Forum: Fixing WordPress
In reply to: how to make the comments show?i used this on another template that requires clicking a link to show the comments, maybe it will work:
<?php global $withcomments; $withcomments = true; comments_template(); ?>Forum: Fixing WordPress
In reply to: Problem changing hover link colorjust paste it at the bottom of your style.css file 🙂
Forum: Fixing WordPress
In reply to: Problem changing hover link colori’m not too sure, but try this?
.postContent a:hover { color: #73B1B7; }Forum: Fixing WordPress
In reply to: How to activate the Contact Us linkyou need to edit the footer.php file and replace the # with the correct link.
Forum: Fixing WordPress
In reply to: How to activate the Contact Us linkhave you created a “contact us” page or post?
Forum: Fixing WordPress
In reply to: how to change header image in the theme template?check your css file and make sure that the background image is referencing the new image file that you uploaded.
if you used the same filename, the new image should have overwritten the old one. in this case, maybe you just need to clear your cache. 🙂
Forum: Fixing WordPress
In reply to: 404 error up on logging in to wordpress adminmaybe its time to ask your hosting provider to check on their side too, that was what solved my problem 🙂