jbwp11
Forum Replies Created
-
I copied the entire http://example.com/public_html/wp-content/themes/startupWP/images/example_image.jpg but it shows “page not found” and causes no background image in the webpage.
Where would the media library screen be? I used hostgator file manager.
I installed my-custom-css but it doesn’t make any effect to the webpage.
I added the following line to my-custom-css
div#container { background: #ffffff ; background-image:url(example.jpg); }Finally got it working, thanks! When I added the suggested code to style.css next to body{ ….}, this didn’t work.
#container { background: #ffffff url(images/image2.jpg); }There was another #container statement in a later line in the file where it worked (not sure why).
#container{padding-bottom:20px;background:#fff url(images/image-back.jpg);}Where can one find a custom CSS plugin?
I should try the custom CSS plugin so theme updates work fine.
The background for each page where text appears (e.g. Contact) is plain white on top of the gray fabric background of the website. I want to modify the background for the text pages (and not the CSS background).
How can I change this plain white to an image?
Forum: Fixing WordPress
In reply to: Form action to load same page doesn't work?name=testname part comes from the an input box on the form (<input type=”TEXT” name=”name”>). Supplying “testname” in this text box leads to this webpage http://example.com/?name=testname
It should instead load the page with the argument “?name=testname”
Since hardcoding the page id does not work, can there be some other issue with this?
There is a style.css from StartupWP theme. I modified it briefly to include background-image. No custom CSS as far as I know. I simply want to have a different background for page on top of the CSS background.
Forum: Fixing WordPress
In reply to: Form action to load same page doesn't work‘Nothing found for the requested page. Try a search instead?’ page is
http://example.com/?name=testname<form action="<?php the_permalink(); ?>" method="GET"> <input type="TEXT" name="name"> <input type="SUBMIT" value="Go">Forum: Fixing WordPress
In reply to: Form action to load same page doesn't workI used method=”get”. It works if I link example.php instead of a page.
<form action="<?php the_permalink(); ?>" method="GET">It doesn’t work even if I hardcode http://example.com/page_id=xx into the action.
Forum: Fixing WordPress
In reply to: Form action to load same page doesn't workSame result:
Nothing found for the requested page. Try a search instead?I have also tried register_globals on/off with the same result.