webjunk
Forum Replies Created
-
That is dependant on your theme’s style.css which you could edit bit will effect site-wise. Probably either for table or td. Don’t know your page your on. You could try adding to the table:
<table style=”border-style: none;”>
and for td
<td style=”vertical-align: top; border-style: none;”>Forum: Fixing WordPress
In reply to: Can you put a link on images caption text?Yes. But you have be careful. The Visual editor usually messes it up for some reason. Removes the link Just make sure the code for the caption has something like this:
caption="<a href=http://webjunk.com>CLICK HERE</a>"]Notice no quotes around the href value. Never had it working with the quotes (escaping them does not help) but works fine without the quotes.
Forum: Plugins
In reply to: [Plugin: NextGen Gallery] remove "Show as Slideshow"?In WP-admin under Gallery/Options/Gallery you will see:
Integrate slideshow: and unselect it.hhhmmm. Hate to admit I was wrong when I do this stuff for a living (websites not posting in this forum) but I was wrong. Sometimes I type faster than I think. you need to align the first cell to top so change the first line to:
<table><tr><td style="vertical-align: top;">Here is an example with the only thig changed from your code is the style tag:
http://webjunk.com/wordpress/table-example-for-cf7Never said I was perfect. Just dang close……
Forum: Fixing WordPress
In reply to: Changed hosts, now have problems?Have no idea what “uploaded to cpanel” means. You again need to open a support ticket with your host. The wp-config.php probably will not work with the new host. ‘DB_NAME’ ‘DB_USER’ and maybe password may be changed at the new host. Again, best to confirm with the host.
Forum: Fixing WordPress
In reply to: Changed hosts, now have problems?Looks like you do not have a valid wp-config.php. It requires the info for the database. Hopefully you did move/import the database before your old host was shut down.
Forum: Plugins
In reply to: Which plugin is slowing WordPress site?Images are just one part. I can not provide you with answers because you STILL did not provide me with answers to the questions I asked.
guess you will have to deal with it. Tired of asking ad not getting anything back.Forum: Plugins
In reply to: Contact Form 7: Spinning arrow.Is there anyone on here who has the problem with the spinning arrow that would give me access? Probably a similar issue for all.
You can get me directly at: webjunk.comMaybe you should go back to basics in case you have some other code or divs getting into the way. Do the tables IN THE FORM like this:
<table><tr><td> <p>Your Name (required)<br /> [text* your-name] </p> <p>Your Email (required)<br /> [email* your-email] </p> <p>Subject<br /> [text your-subject] </p> <p>Your Message<br /> [textarea your-message] </p> <p>[submit "Send"]</p> </td><td> <img src="http://mydomain.com/uploads/myimage1.jpg" alt="alt tag"> </td></tr></table>The only way it should be ABOVE the contact form is either if you have empty space in the form itself which needs to be removed or you did not specify the <tr> t(row) tag correctly. I use this on hundreds of sites.
Forum: Fixing WordPress
In reply to: Changed hosts, now have problems?Your directory mapping on your host probably looks something like:
/home/YourUserName/public_html
or if on Windows hosting:
c:\home\YourUserName\public_htmlFiles in that directoy are accssible to the Internet as the ROOT (start) of your website directory mapping such as:
http://YourDomainName.comYou probably put the files (which will not work) in:
/home/YourUserName/
or
c:\home\YourUserNamewhich can not be accessed by the Internet.
You never mentioned what you used to copy file the first time but you could use the same means but copy to the correct directory. If you want to use an FTP client yo could read the documentation on FTP here:
http://codex.wordpress.org/FTP_ClientsIf ANY of this is beyond your current abilities then you need to ask your Host’s Support group to assist you. The better hosts have no problem dealing with these tings. Otherwise you would be better off hiring someone. Otherwise you may end up with no website.
Forum: Fixing WordPress
In reply to: Changed hosts, now have problems?If you have some kind of shell access (if Linux) using either telnet or SSH then just perform a mv
Otherwise as its a copy anyway, just recopy the files to the proper directory from whatever you used before.
Anything above public_html is not web-accessible. That is the problem you have.Forum: Fixing WordPress
In reply to: Cannot modify header information…wp-login.php on line 337Try renaming your current theme’s directory so it uses the default one.
If that doesnot work try renaming the plugins directory and create a new empty one.[album id=all template=compact]
will show ALL the Galleries. It means to show all albums, which means all galleries that might belong to ANY and ALL albums will be displayed. That shortcode is doing what it is supposed to.
If you only want certain galleries to display, then make sure only those galleries are in that album and set “id=albumyouwant”
You do not “See Albums” you see the contents of the Album which is essentially galleries. Albums can’t he their own image as images are only in galleries.Why not just do a simple table on the Page/Post you have the contact form. (Not in the Contact Form itself)
<table><tr><td> [contact-form 1 "Contact form 1"] </td><td> <img src="http://mydomain.com/uploads/myimage1.jpg" alt="alt tag"> </td></tr></table>