We Create Web Designs
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Elisium] Turn off "comments"Please see this:
http://wordpress.org/support/topic/turn-off-comments-on-pages-by-default?replies=25Set them off in the settings/discussion. For the pages that already were published, just open each page and disable the comments.
Forum: Themes and Templates
In reply to: Fav IconHi, Joe.
Maybe this helps:
http://codex.wordpress.org/Creating_a_Favicon
The thing is to create the favicon, (I am using this to generate one from a .jpg: http://www.favicon.cc/) and then add the code to the header.php of the theme. This is done easily by going to appearance/editor and selecting header.php.Forum: Themes and Templates
In reply to: [Elisium] Multi langualYou can add your French info in the theme options panel. Instead of our English ‘dummy text’, just fill in the information in French.
Forum: Themes and Templates
In reply to: [Elisium] Using Google fonts plug-inI have installed the plugin. I’m getting an error with it:
Notice: Use of undefined constant __DIR__ – assumed ‘__DIR__’ in .. /plugins/easy-google-fonts/includes/class-easy-google-fonts-admin.php on line 107
Do you see the same error? Maybe it’s the reason it doesn’t work. Will look more into it.
Forum: Themes and Templates
In reply to: [Elisium] slider imageSorry for not being clear.
Please go to APPEARANCE: EDITOR: style.css (it’s the file that opens directly on the page). Please look for
.orbit-container .orbit-slides-container img
You’ll need to edit here:
margin: 3em 0 0 0;The second value (the first 0) is for the RIGHT margin. You will see the code appears in various locations, you can edit the margin for different screen sizes. For a wide monitor (I have a 1600 pixels wide), I have made the change under the style that suits my display:
@media only screen and (min-width: 1281px) and (max-width: 1720px)Few lines under you’ll notice you have
.orbit-container .orbit-slides-container imgIn my case I have tweaked it so it’s
.orbit-container .orbit-slides-container img {
margin: 3em 2em 0 0;
max-width: 600px;
}the 2em will now ‘pad’ my image and make it sit a little farther from the right end of the slider. This is where you’ll have to ‘play’ with the code. Hope it helps 😉
Forum: Themes and Templates
In reply to: [Elisium] Using Google fonts plug-inWe’ll need to test the plugin and see if it’s a theme issue or something else. Can you please link us to the plugin? Thank you.
Forum: Themes and Templates
In reply to: [Elisium] slider imageYou can do it via the style.css (setting a padding for the image or, if it’s easier for you, make the image as a transparent .png and leave a bit of ‘blank’ in the right. This should solve it.
Forum: Themes and Templates
In reply to: [Elisium] slider imageLeggyweb, for the featured section removal in the homepage, please send your login details to contact (at) wecreatewebdesigns (dot) com. Will delete the section myself.
You can indeed make changes in the CSS to best suit your needs. So far your site looks OK, so your change did work.
Forum: Themes and Templates
In reply to: [Elisium] slider imageHave you pasted the URL for the full image or the thumbnail?
Please link me to the site, we’ll see what’s wrong there 😉Forum: Themes and Templates
In reply to: [Elisium] slider imageThe new theme version allows you to upload the images via the MEDIA section. There you’ll have a link to the file. Place the link in the HOMEPAGE OPTIONS and it should work. No more coding or FTP uploading, if you don’t want to 😉
Forum: Themes and Templates
In reply to: [Elisium] How to divide menuMaybe it would be easier to get another smaller menu and edit in the CSS? Or place the few links in the header.php separately, then style them …
Forum: Themes and Templates
In reply to: [Elisium] Social Media icons@leggyweb: yes, you can use a similar code to the one above (for Linkedin or Gplus).
You can replace # with http://mysite.com/feed (instead of mysite.com, please use your site’s address)
Forum: Themes and Templates
In reply to: [Elisium] Social Media iconsYou can add them manually into the header.php.
Upload the icons you’d like to use and then add the code into the header.php.
Here is a sample code:
<a href="#" rel="nofollow"><img src="<?php echo get_template_directory_uri() ?>/elisium/linkedin.png" alt="LinkedIn"></a> <a href="#" rel="nofollow"><img src="<?php echo get_template_directory_uri() ?>/elisium/gplus.png" alt="Google Plus"></a>You can add it before <!– twitter –> for instance or anywhere you’d like the icons to appear.
Please replace # with the link to your LinkedIn and G+ accounts.
Forum: Themes and Templates
In reply to: [Elisium] how do I activate the homepage sliderHello, the slider is activated, once the homepage is set to show our custom index page. In order to do so, please create a page, which you can call home and, in the right section (TEMPLATE, please choose INDEX). If this is set, then you should see the custom home design and the slider.