Fórumok

Custom Background Image

biswajit sarkar, módosítva 12 év-val korábban

Custom Background Image

Regular Member Bejegyzések: 166 Csatlakozás dátuma: 2011.10.17. Legújabb bejegyzések
I am creating a Custom theme..

In my theme I want to add dynamic background Image.
In my theme if I change a page the background image dynamically change for that page

please help
thumbnail
David H Nebinger, módosítva 12 év-val korábban

RE: Custom Background Image

Liferay Legend Bejegyzések: 14915 Csatlakozás dátuma: 2006.09.02. Legújabb bejegyzések
Background image is managed by CSS.

In your theme, you could add code to portal_normal.vm that would assign a class to the body based upon the current page.
biswajit sarkar, módosítva 12 év-val korábban

RE: Custom Background Image

Regular Member Bejegyzések: 166 Csatlakozás dátuma: 2011.10.17. Legújabb bejegyzések
David H Nebinger:
Background image is managed by CSS.

In your theme, you could add code to portal_normal.vm that would assign a class to the body based upon the current page.



but I need to add dynamic background image...which change in different page..not fixed
thumbnail
David H Nebinger, módosítva 12 év-val korábban

RE: Custom Background Image

Liferay Legend Bejegyzések: 14915 Csatlakozás dátuma: 2006.09.02. Legújabb bejegyzések
Right, so in your portal_normal.vm you determine which page is being rendered. Add an appropriate class to the <body /> tag that has the CSS for the background image and you're done.

This is not a 'fixed' solution, it would allow you to determine the class to add to the <body /> tag dynamically. Class changes, background image changes. QED.
thumbnail
lou cat, módosítva 12 év-val korábban

RE: Custom Background Image

Regular Member Bejegyzések: 196 Csatlakozás dátuma: 2012.01.26. Legújabb bejegyzések
I find David's one the best solution, I had a similar problem because I wanted to change the header banner in every page, but this was part of my theme, so in my portal-normal.vm I wrote:

#set ($headerbase = "header-")
#set ($page_name = $page.getName($locale))
#set ($header_id = "$headerbase$page_name")

<div id= $header_id class="headerpictures"></div>

and in custom.css I could set a background image based on the class "headerpictures", that is always the same, or using the id created dynamically for every page in order to have a custom banner in every page.

It's basically what most of you suggested, but if Biswajit didn't solve yet, I hope a bit of code could help ;)
Gaurav Shirbhate, módosítva 11 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 24 Csatlakozás dátuma: 2012.09.27. Legújabb bejegyzések
i have to set background image but it should be fix . It should not be move with scroll only page should be move. please give me solution.
Gaurav Shirbhate, módosítva 11 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 24 Csatlakozás dátuma: 2012.09.27. Legújabb bejegyzések
i have to set background image but it should be fix . It should not be move with scroll only page should be move. please give me solution.
thumbnail
Jignesh Vachhani, módosítva 11 év-val korábban

RE: Custom Background Image

Liferay Master Bejegyzések: 803 Csatlakozás dátuma: 2008.03.10. Legújabb bejegyzések
i have to set background image but it should be fix . It should not be move with scroll only page should be move. please give me solution


Gaurav,
You can apply CSS class given as below :

body {
background: url("path to xyz.jpg") no-repeat fixed right top #FFFFFF;
}
Gaurav Shirbhate, módosítva 11 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 24 Csatlakozás dátuma: 2012.09.27. Legújabb bejegyzések
Thanks sir...now it is working fine.
Gaurav Shirbhate, módosítva 11 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 24 Csatlakozás dátuma: 2012.09.27. Legújabb bejegyzések
Sir, i have to change images in single portlet. But <div id="slideshow"> <div>first slide </div> <div> <img src="images.jpg"></div> <div>last slide</div> </div>
In this case i am getting first slide and ladt slide image but i am not getting image in portlet actually path is correct. please give me solution on this.
thumbnail
Jignesh Vachhani, módosítva 11 év-val korábban

RE: Custom Background Image

Liferay Master Bejegyzések: 803 Csatlakozás dátuma: 2008.03.10. Legújabb bejegyzések
Gaurav Shirbhate:
Sir, i have to change images in single portlet. But <div id="slideshow"> <div>first slide </div> <div> <img src="images.jpg"></div> <div>last slide</div> </div>
In this case i am getting first slide and ladt slide image but i am not getting image in portlet actually path is correct. please give me solution on this.


Gaurav,
Not clear with your problem.
Could you please elaborate in more details ?
Gaurav Shirbhate, módosítva 11 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 24 Csatlakozás dátuma: 2012.09.27. Legújabb bejegyzések
Sorry for being unclear first time.

I wanted to display a slide show on protlet which contains three slides.
First slide and third slide contains string where as second slide contains an image. I am able to resolve the ussue by putting .css file background image property.
but still i want to know by giving accurate image src path i am not getting image on the second slide when i ran slider, but i am getting first and second slide text.
thumbnail
Jignesh Vachhani, módosítva 11 év-val korábban

RE: Custom Background Image

Liferay Master Bejegyzések: 803 Csatlakozás dátuma: 2008.03.10. Legújabb bejegyzések
That is depend on slideshow plugin which you used.
Please post some plugin code here which you used to create slideshow.
Did you use jquery for this slideshow ?
Gaurav Shirbhate, módosítva 11 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 24 Csatlakozás dátuma: 2012.09.27. Legújabb bejegyzések
i used below code ....
<div id="slideshow">
<div id="image1">
<img src="a.png">
</div>
<div id="image2">
<img src="b.png">
</div>
<div id="image3">
<img src="c.png">
</div>
</div>
and i just mentioned height and width of the imagein .css file
Gaurav Shirbhate, módosítva 11 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 24 Csatlakozás dátuma: 2012.09.27. Legújabb bejegyzések
I have to create my own calendar portlet. I wrote one code for calendar in view.jsp file of own portlet. but calendar is not getting on the portlet.
same code i used in .html file in netbeans. I am getting calendar on the output. please give me solution on this.
Gaurav Shirbhate, módosítva 11 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 24 Csatlakozás dátuma: 2012.09.27. Legújabb bejegyzések
Actually in my website i created one portlet. I dropped that portlet on home page and mentioned some list of options on that. When i will click on any of the option i have to show information about that option on the second portlet which i dropped on the same page.
Please give me solution for this.
Thanks.
Gaurav Shirbhate, módosítva 11 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 24 Csatlakozás dátuma: 2012.09.27. Legújabb bejegyzések
Actually in my website i created one portlet. I dropped that portlet on home page and mentioned some list of options on that. When i will click on any of the option i have to show information about that option on the second portlet which i dropped on the same page.
Please give me solution for this.
Thanks.
thumbnail
Jignesh Vachhani, módosítva 11 év-val korábban

RE: Custom Background Image

Liferay Master Bejegyzések: 803 Csatlakozás dátuma: 2008.03.10. Legújabb bejegyzések
You can follow IPC "Inter portlet communication" concept here.
For detail about IPC, you can refer http://www.liferay.com/community/wiki/-/wiki/Main/Portlet+to+Portlet+Communication
http://www.liferaysolution.com/2011/07/inter-portlet-communication.html
Gaurav Shirbhate, módosítva 11 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 24 Csatlakozás dátuma: 2012.09.27. Legújabb bejegyzések
I am elaborating my question again. I dropped two portlets on a same page. On one portlet i displayed list of options, when i click on that options one by one. I have to show information about that options on the second portlet, will i get that information on that portlet using inter portlet communication concepts. Please give me solution.
Thanks.
Gaurav Shirbhate, módosítva 11 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 24 Csatlakozás dátuma: 2012.09.27. Legújabb bejegyzések
pleas give me solution for above question.
thumbnail
Jignesh Vachhani, módosítva 11 év-val korábban

RE: Custom Background Image

Liferay Master Bejegyzések: 803 Csatlakozás dátuma: 2008.03.10. Legújabb bejegyzések
Please create separate thread for this query.
Gaurav Shirbhate, módosítva 11 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 24 Csatlakozás dátuma: 2012.09.27. Legújabb bejegyzések
yes. I posted question on separate thread.
Gaurav Shirbhate, módosítva 11 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 24 Csatlakozás dátuma: 2012.09.27. Legújabb bejegyzések
Please give me solution for this immediately. Its urgent.

1. I created two portlets.
2. First- Trigger Portlet and Second-Listener Portlet.
3. I added that two portlets on a page. First at left side and second at right side.
4. I have given two hyperlinks on Trigger Portlet.
5. When i click on any particular link, I have to show some data whatever i have to show on Listener Portlet.
6. Again when i click on another hyperlink i have to show data on the same Listener Portlet.

I resolved this problem using javascript. But when i access that portal as a administrator at that time listener portlet works fine. But when i access as a user at that time listener portlet is not showing output whatever it has to show. Please give me solution for this.
Gaurav Shirbhate, módosítva 11 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 24 Csatlakozás dátuma: 2012.09.27. Legújabb bejegyzések
I dropped two portlets on a same page, I displayed list of options on one portlet. When i click on any particular option i have to show information about that option on the second portlet. This should happen with all the options. Please give me solution for this, thanks.
thumbnail
Paulo Henrique Pires, módosítva 12 év-val korábban

RE: Custom Background Image

Junior Member Bejegyzések: 82 Csatlakozás dátuma: 2011.02.23. Legújabb bejegyzések
create a different theme for each page, changing only the background.
thumbnail
Vir Singh, módosítva 12 év-val korábban

RE: Custom Background Image

New Member Bejegyzések: 2 Csatlakozás dátuma: 2012.01.10. Legújabb bejegyzések
biswajit sarkar:
I am creating a Custom theme..

In my theme I want to add dynamic background Image.
In my theme if I change a page the background image dynamically change for that page

please help



Hi, to add dynamic bg image, you can define bg class(s) for page(s) body in css any can apply that you can apply on In your theme "portal_normal.vm" file. you can apply the condition to apply particular class of css on basis of page id.
thumbnail
Maarten van Heiningen, módosítva 12 év-val korábban

RE: Custom Background Image

Regular Member Bejegyzések: 174 Csatlakozás dátuma: 2009.02.05. Legújabb bejegyzések
Hi,

You could set a custom attribute on the page and pre-fill this with a value of an image name that is the default. Then you can set the background image for each page so it can be configured by a community admin or admin (or anybody who is allowed to change your page settings).

This can then be used to either set a class for the body element or set the image directly in a style setting of your page header style element.
Bradley Wood, módosítva 11 év-val korábban

RE: Custom Background Image