Ramesh (thecodeisclear)
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Releasing a forked WP plugin separatelyThank you leejosepho & ipstenu.
I would also prefer to collaborate and have submitted a pull request on Github and contacted the author separately. This is my last resort.
Forum: Fixing WordPress
In reply to: Posts page looks like front pageCan you post the link to your site so that we know what you see right now and what you are expecting?
Forum: Fixing WordPress
In reply to: background image not filling screenCan you post a screenshot of the page? I opened the site in both FF & IE and they didn’t have the problem that you mentioned.
One thing you could do is create a really wide background image (it can just be a few pixels in height) and use it instead of a 598×404 px image. Here is one that is 1920x10px and should work better http://pbrd.co/1HKAfa3
Forum: Fixing WordPress
In reply to: background image not filling screenThe grey margin on the right hand side of the screen is because the background image has begun repeating and you can see the initial part of the image.
One thing you can do is to include background-color and limit repeat to one direction in your style defintion
body { background-image: url("../../../images/BG.jpg"); background-position: center; background-size: 100%; background-repeat: repeat-y; background-color: #xxxxxx width:100%; }where xxxxxx is the color of the extreme right of the gradient.
background-repeatwill make the background repeat only vertically and the remainder of the screen will be covered bybackground-colorPS: I can see what you mean by the gradient appearing only from halfway. The div with id ‘wrapper’ has a background color of #fff which is overriding the gradient color.
Forum: Fixing WordPress
In reply to: background image not filling screenThe width issue is due to the following css in styles.css
#access .menu-header, div.menu { font-size: 13px; margin-left: 12px; width: 928px; }It limits the width to 928px. #access has a width of 940px. At first glance, changing the width to
autoworked, but I am not sure if it affects the rest of your site.Forum: Fixing WordPress
In reply to: background image not filling screenRegarding the background, the
background-repeat: no-repeat;is preventing the background from repeating. setting it torepeator removing it would let the background fill the entire site content.PS: The image has a white border to the top and right, so when it repeats you get a white border which doesn’t look so good.
You would be better off doing a CSS background for the entire page. Fiddle here – http://jsfiddle.net/er8zLk5a/
Forum: Fixing WordPress
In reply to: Website Crash Parse eerror: syntaxNo problem. Glad it worked out.
Forum: Everything else WordPress
In reply to: "As seen on" imagesIf you can get all the logos from a site like freevector.com, you can overlay the entire logo by the same grey color in Photoshop.
From the Art of Charm site, it looks like all logos are of different sizes, so that shouldn’t be an issue.
Forum: Fixing WordPress
In reply to: Importing posts – with imagesI think you can use the WordPress Export & Import to host their posts. While importing the XML, select import media and attachments so that the files are also copied over. This should be simple enough without having to worry about conflicting keys/IDs.
Yes, the manual DB way would be quite difficult and long drawn.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Align "buttons"@shahzadnabeelpk: Can you post a link to the page where you are placing your buttons?
Forum: Fixing WordPress
In reply to: Website Crash Parse eerror: syntaxHi, Once in the Admin Dashboard, Select Plugins > Installed Plugins. You should see all the installed plugins. If you have lots of plugins and can’t see gravityforms on the first page, use the search box just above the plugin list. You should be able to de-activate gravityforms.
Forum: Fixing WordPress
In reply to: Adding gaps between thumbnails with CSSThat’s strange, I made the code changes via FF inspector and here is the output
http://www.tiikoni.com/tis/view/?id=4036ee1style sheet
http://www.tiikoni.com/tis/view/?id=9a53aadForum: Plugins
In reply to: [Plugin: ShortcodesUltimate] Linking to spoilers nested in tabsYou can add an anchor to a tab and an anchor to a spoiler, but a spoiler in a tab.. that doesn’t work out.
If you can get it to work, please post the solution, it would be a good reference for others.
Forum: Fixing WordPress
In reply to: Adding gaps between thumbnails with CSSHere is part of the code for one of the images
<a rel="bookmark" href="http://adinnovations.com.au/project/test-projects-kim/"> <div class="description" style="opacity: 0; display: block;"></div> <div class="overlay" style="opacity: 0; display: block;"></div> <img class="thumb wp-post-image" width="300" height="225" title="" alt="Retrac Louvres™ ROOFS" src="http://adinnovations.com.au/wp-content/uploads/retract-louvres-300x225.jpg"></img> </a>All other images seem to be following the same format. Here are the changes I would do in styles.css
#content .project.small img{ width: 100%; height: auto; margin: 5px; }and
#content .project.small .overlay { position: absolute; display: none; background: #cdb980; width: 100%; height: 100%; z-index: 9; margin: 5px; }Forum: Fixing WordPress
In reply to: Popup code doesnt work on WordPressI may be oversimplifying, but what you seem to be doing is similar to a lightbox. Would it be easier to implement a lightbox plugin?