puneetsahalot
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Patchwork] Possible to change the patchwork background?Well, I just had a look at the theme and you don’t need to do all this CSS stuff.
It supports custom background.
Here, is the easiest way :
Login to WP admin
Go to appearance >> background
Upload your new background image and “save”
That’s it!Forum: Themes and Templates
In reply to: [Patchwork] Possible to change the patchwork background?ah! you don’t need to re-install the theme.
That will over-write the changes you make to the default code.Now that you have uploaded the theme, login to WP admin
Go to Appearance >> Editor >> Style.cssand then follow the instructions from my last message for uploading the image and getting the URL.
Forum: Themes and Templates
In reply to: [Patchwork] Possible to change the patchwork background?Here is the simple way. You can use the image even if you don’t put it into “images” folder.
Do this:
Download the image on your computer from https://i1214.photobucket.com/albums/cc494/giuliap90/back.pngNow login to WordPress admin
Go to Media Library >> Add New
Upload your downloaded image here.
After the image is uploaded to your site, you will see a URL for the uploaded image.
Copy that URLEdit the style.css file
and replace your old code with :
background-image : url("YOUR_FILE_URL_HERE") !important;}
if you don’t see any changes on the site. Try clearing the browser cache.Forum: Themes and Templates
In reply to: error on uploadingif you have a zip file of the theme. Try uploading it directly from your WordPress admin and see if it works or not.
If it still shows “style sheet is missing” then it means that your theme is broken.Forum: Themes and Templates
In reply to: [Patchwork] Possible to change the patchwork background?You can replace your existing code
.style-babycakes #masthead { background-image: url("images/patchwork3.jpg"); border-bottom: 10px solid #774F47; }
with
.style-babycakes #masthead { background-image: url("URL_TO_YOUR_NEW_BACKGROUND_IMAGE"); border-bottom: 10px solid #774F47; }
or if you want to use a solid color as background, you can replace your existing code with
.style-babycakes #masthead { background-image: none; background-color: HEX_COLOR_CODE; border-bottom: 10px solid #774F47; }
Forum: Fixing WordPress
In reply to: Getting a fatal errorYou will need to increase the memory limit and this issue will be resolved. You can follow the instructions here
Forum: Themes and Templates
In reply to: [Path] Path theme pages not showingI had a look at the theme and it uses WordPress Menus.
So, probably This link can help you.You don’t need any plugin to add facebook like box.
Simply go to this page :
enter your facebook page URL, configure the settings as you wish and click “get code” You can use iframe code and paste it in your sidebar widget area. It’s quite easy ??