Hello im trying Selecta right now and this is a wonderfull work congratulations ! I was wondering how to add a vidéo on a article because i don't have the summary field as u wrote on the selecta wiki...should i create a new field ?

thx by advance

Comments

vkechagias’s picture

Hi yoann54,

there is no need for you to create a new field. You can reproduce the same effect as the demo site's video pages with the default content types.

If you can not see the summary field just click on "Edit summary" above the "Body" field. A new field will appear where you can input your video iframe.

Cheers
/Bill

kipper’s picture

hello vkech!

vkech wrote:
If you can not see the summary field just click on "Edit summary" above the "Body" field. A new field will appear where you can input your video iframe.

I've done exactly that (Full HTML) way but there's something wrong with the video displaying in its real dimensions after clicking on "Read More". The video doesn't appear, only the node title appears and the rest of the article text below, as it has actually to be.

selecta_video_article_home:
http://www.giuliweb.com/img_drupalitalia/selecta_video_article_home.jpg

selecta_video_article_full_page:
http://www.giuliweb.com/img_drupalitalia/selecta_video_article_full_page...

any suggestion???

thanks and congratulations!!!

vkechagias’s picture

Hi kipper,

you have to input the

code only in the summary field. You can view an example here http://screencast.com/t/MYgZOFbn69DE If the summary field is empty then you get only the title in the full article page as shown here http://demo.drupalizing.com/?theme=selecta/node/15 Can you post a screen of the add content form so i can better understand the problem? /Bill
kipper’s picture

vkechagias’s picture

Hi kipper,

It would be better that you remove the login info from your post for security purposes.

I have saved the credentials and will look into your issue in the next days.

Bill

kipper’s picture

Hi Bill, I'll do that immediately. Thanks a lot...

kipper

vkechagias’s picture

Hi kipper,

your issue seems to be related with the multilingual installation of your site.

I will open a new issue with category "bug" and it is better that we will continue there. I will post the link once i have created the new issue.

edit: Here is the link #1563570: No video in the articles pages in multilingual installations.

Bill

kipper’s picture

ok bill!

thanks
kipper

kipper’s picture

Hi Bill,
I’m afraid there’s something wrong with CSS (or with the code…) when I add the Ads block and I took the online tutorial literally!

I double checked the version of the online demo with Firebug and my feeling is that maybe some changes to both "style.css" and/or "style-blue.css" have been made and that CSS in the theme (download from drupal.org) is different from the online version. If I’m wrong…..apologies.

I create the new Ads block and inserted the code with PHP turned on filter but the icons are aligned vertically and besides the header is completely black and that shouldn’t happen…

The sreen http://www.giuliweb.com/img_drupalitalia/TTfsg5678jhdsd.jpg

Would you please help me out on this?

P.S. This installation is NO-Multilanguage!

Thanks in advance for your support.

Kipper

kipper’s picture

hi bill,
another fresh installation ...same CSS problem with ads block :(

ciao
kipper

vkechagias’s picture

Hey Kipper,

you should probably open new issue threads for the different problems you come across, so that other people can find solutions to their problems easier.

There is some information missing in the wiki. You should override the default padding of the specific block containing the ads code.

In the demonstration site the block with id="block-block-7" is the one that contains the ads. With that in mind you should add at the bottom of your css file or even better at a local.css file the following code:

#sidebar #block-block-7.block {
    background: none repeat scroll 0 0 transparent;
    padding: 0;
}

If i am correct in your installation the block containing the ads is the "block-block-1" block. So the code you have to append to your css would be:

#sidebar #block-block-1.block { 
    background: none repeat scroll 0 0 transparent;
    padding: 0;
}

i will add the missing information in the wiki in the next few days.

Hope this works for you.

Cheers
/Bill

kipper’s picture

Thanks You Bill,

I have solved this problems!

I have find the exactly ID block with Firebug and add this into "custom.css"

#sidebar #block-block-1.block {
    background: none repeat scroll 0 0 transparent;
    padding: 0;
}

Work fine!

P.S. In any case this "Killer Theme" to need the solution on the multilanguage to more soon... for me is very urgent...

Many Thanks Bill!

kipper

skounis’s picture

Status: Active » Closed (fixed)
vkechagias’s picture

Issue summary: View changes