• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Can I modify the css for the event details screen?

Can I modify the css for the event details screen? 13 years 7 months ago #14708

  • mmeyer
  • mmeyer's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 6
My site has a dark-background theme. I was able to edit the theme to use <h4> to allow the text to show, but the background is still white, and the links are invisible.

I need to know where the css is that might control this.

Site is www.nedivtest.com. The event is on 9/16-18. The link directly to the details page is: www.nedivtest.com/index.php/component/rs...e-fun-one?Itemid=101

Any help is greatly appreciated.

Thanks!

Meg
The administrator has disabled public write access.

Re: Can I modify the css for the event details screen? 13 years 7 months ago #14715

  • joe2
  • joe2's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 7
  • Thank you received: 1
Looks like your "a" style is hard-coded somewhere in your template as an element style. Not sure how your temple works.

To overide that try adding via FTP something like this

div.rse_box h4 p a span {
color:#ffffff!important;
}

to this file (
Warning: Spoiler! [ Click to expand ]
)
Last Edit: 13 years 7 months ago by joe2. Reason: hide text from guests
The administrator has disabled public write access.

Re: Can I modify the css for the event details screen? 13 years 7 months ago #14716

  • joe2
  • joe2's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 7
  • Thank you received: 1
I re-read your post and realised you maybe want the background to all look the same?

If so, don't do what I said earlier but find the same file and do the below:

If you do, in the same file, find this declaration

.rse_box {
background: none repeat scroll 0 0 #F9F9F7;
border: 1px solid #C5CED2;
padding: 5px;
}

and change to

.rse_box {
background: none repeat scroll 0 0 transparent;
padding: 5px;
}

and also find this declaration

.rse_box h2 {
background: url("../images/titlebg.gif") repeat-x scroll left top #EAEEEE;
border: 1px solid #C5CED2;
font-size: 18px !important;
line-height: 22px;
margin: 0;
padding: 10px 2% !important;
text-indent: 5px;
width: 96% !important;
}

and change to

.rse_box h2 {
background: transparent;
border-bottom: 1px solid #222222;
font-size: 18px !important;
line-height: 22px;
margin: 0;
padding: 10px 2% !important;
text-indent: 5px;
width: 96% !important;
}
The administrator has disabled public write access.
The following user(s) said Thank You: mmeyer

Re: Can I modify the css for the event details screen? 13 years 7 months ago #14765

  • mmeyer
  • mmeyer's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 6
That worked beatifully! Thanks!
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!