Foren

Custom Background Image

biswajit sarkar, geändert vor 12 Jahren.

Custom Background Image

Regular Member Beiträge: 166 Beitrittsdatum: 17.10.11 Neueste Beiträge
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, geändert vor 12 Jahren.

RE: Custom Background Image

Liferay Legend Beiträge: 14915 Beitrittsdatum: 02.09.06 Neueste Beiträge
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, geändert vor 12 Jahren.

RE: Custom Background Image

Regular Member Beiträge: 166 Beitrittsdatum: 17.10.11 Neueste Beiträge
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, geändert vor 12 Jahren.

RE: Custom Background Image

Liferay Legend Beiträge: 14915 Beitrittsdatum: 02.09.06 Neueste Beiträge
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, geändert vor 12 Jahren.

RE: Custom Background Image

Regular Member Beiträge: 196 Beitrittsdatum: 26.01.12 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

New Member Beiträge: 24 Beitrittsdatum: 27.09.12 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

New Member Beiträge: 24 Beitrittsdatum: 27.09.12 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

Liferay Master Beiträge: 803 Beitrittsdatum: 10.03.08 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

New Member Beiträge: 24 Beitrittsdatum: 27.09.12 Neueste Beiträge
Thanks sir...now it is working fine.
Gaurav Shirbhate, geändert vor 11 Jahren.

RE: Custom Background Image

New Member Beiträge: 24 Beitrittsdatum: 27.09.12 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

Liferay Master Beiträge: 803 Beitrittsdatum: 10.03.08 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

New Member Beiträge: 24 Beitrittsdatum: 27.09.12 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

Liferay Master Beiträge: 803 Beitrittsdatum: 10.03.08 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

New Member Beiträge: 24 Beitrittsdatum: 27.09.12 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

New Member Beiträge: 24 Beitrittsdatum: 27.09.12 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

New Member Beiträge: 24 Beitrittsdatum: 27.09.12 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

New Member Beiträge: 24 Beitrittsdatum: 27.09.12 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

Liferay Master Beiträge: 803 Beitrittsdatum: 10.03.08 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

New Member Beiträge: 24 Beitrittsdatum: 27.09.12 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

New Member Beiträge: 24 Beitrittsdatum: 27.09.12 Neueste Beiträge
pleas give me solution for above question.
thumbnail
Jignesh Vachhani, geändert vor 11 Jahren.

RE: Custom Background Image

Liferay Master Beiträge: 803 Beitrittsdatum: 10.03.08 Neueste Beiträge
Please create separate thread for this query.
Gaurav Shirbhate, geändert vor 11 Jahren.

RE: Custom Background Image

New Member Beiträge: 24 Beitrittsdatum: 27.09.12 Neueste Beiträge
yes. I posted question on separate thread.
Gaurav Shirbhate, geändert vor 11 Jahren.

RE: Custom Background Image

New Member Beiträge: 24 Beitrittsdatum: 27.09.12 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image

New Member Beiträge: 24 Beitrittsdatum: 27.09.12 Neueste Beiträge
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, geändert vor 12 Jahren.

RE: Custom Background Image

Junior Member Beiträge: 82 Beitrittsdatum: 23.02.11 Neueste Beiträge
create a different theme for each page, changing only the background.
thumbnail
Vir Singh, geändert vor 12 Jahren.

RE: Custom Background Image

New Member Beiträge: 2 Beitrittsdatum: 10.01.12 Neueste Beiträge
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, geändert vor 12 Jahren.

RE: Custom Background Image

Regular Member Beiträge: 174 Beitrittsdatum: 05.02.09 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Custom Background Image