QuattroSimple - New custom CMSMS Theme

Post links to sites running CMS in all its glory.
User avatar
DADOCTOR
Forum Members
Forum Members
Posts: 51
Joined: Sat Apr 02, 2011 5:39 am
Location: Australia

Re: QuattroSimple - New custom CMSMS Theme

Post by DADOCTOR »

Thanks uniqu3,

I have been trying to add a background colour and boarder to some blocks of text in my page content.

I am trying to add this CSS to the
Edit Stylesheet: theme : Default

Code: Select all

div.sec {
 /* basic */
 background-color: #898D93;
 margin: 0 auto;
 width: 200px;
 padding: 100px;
 text-align: center;
 /* border-radius */
 -webkit-border-radius: 5px;
 -moz-border-radius: 5px;
 border-radius: 5px;
 /* box-shadow */
 -webkit-box-shadow: rgba(0,0,0,0.2) 0px 1px 3px;
 -moz-box-shadow: rgba(0,0,0,0.2) 0px 1px 3px;
 box-shadow: rgba(0,0,0,0.2) 0px 1px 3px;
}
and this HTML to the content of the page

Code: Select all

<div class="section">Hello World!</div>
I have been able to do other styling as you can see on this page *edit out* but this is driving me nuts.

been trying for days to do it, any help would be great

Thanks
Last edited by DADOCTOR on Sun Oct 02, 2011 12:54 am, edited 1 time in total.
uniqu3

Re: QuattroSimple - New custom CMSMS Theme

Post by uniqu3 »

You say you are trying to add some style with div.sec but have a div with class section? Maybe change div.sec to div.section? ;)

Here http://www.crimecasefiles.com/tester you are floating adds to left but your div isn't cleared.
Change <div class="section"> where your add is in that section div to <div class="section clearfix"> so it is cleared after it'S content and next div will no longer be overlapped with floating element.
User avatar
DADOCTOR
Forum Members
Forum Members
Posts: 51
Joined: Sat Apr 02, 2011 5:39 am
Location: Australia

Re: QuattroSimple - New custom CMSMS Theme

Post by DADOCTOR »

Great,

I will have a play with that
thanks for your help :D
User avatar
DADOCTOR
Forum Members
Forum Members
Posts: 51
Joined: Sat Apr 02, 2011 5:39 am
Location: Australia

Re: QuattroSimple - New custom CMSMS Theme

Post by DADOCTOR »

uniqu3 wrote:You say you are trying to add some style with div.sec but have a div with class section? Maybe change div.sec to div.section? ;)

Here http://www.crimecasefiles.com/tester you are floating adds to left but your div isn't cleared.
Change <div class="section"> where your add is in that section div to <div class="section clearfix"> so it is cleared after it'S content and next div will no longer be overlapped with floating element.
I have changed <div class="section clearfix">

now next is

<div class="textblockbg">

should this work? I cant get it to work, I just want a colour background with a border around a block of text?

thanks for your help
uniqu3

Re: QuattroSimple - New custom CMSMS Theme

Post by uniqu3 »

See:

Code: Select all

img.img_left {
    float:left;
    padding:0 8px 8px 0;
{


-----------------------------------
You do understand that commenting in css is done by /* and */?
So i assume that styling after ------------------------------ is not being read by browser.
User avatar
DADOCTOR
Forum Members
Forum Members
Posts: 51
Joined: Sat Apr 02, 2011 5:39 am
Location: Australia

Re: QuattroSimple - New custom CMSMS Theme

Post by DADOCTOR »

Thanks uniqu3,

I did not know that that would have been a problem,

I removed it and it is good now, I just could not figure out why it was not working.

You saved me from going crazy

Thank you ;D
User avatar
DADOCTOR
Forum Members
Forum Members
Posts: 51
Joined: Sat Apr 02, 2011 5:39 am
Location: Australia

Re: QuattroSimple - New custom CMSMS Theme

Post by DADOCTOR »

hello.

Goran I dont know why but my font has changed
I have not edited any css the only thing I have done is setting up facebook comments.

it is the Cuprum font I think,

It is a great font, why it is not working I dont know

Regards
Ryan
uniqu3

Re: QuattroSimple - New custom CMSMS Theme

Post by uniqu3 »

Look in your template if you still have stylesheet from Google included inside <head> </head>

Code: Select all

<link href="http://fonts.googleapis.com/css?family=Cuprum" rel="stylesheet" type="text/css" />
If yes then look in your stylesheet if you are also using it with

Code: Select all

font-family: "Cuprum";
If yes then grab Firebug plugin for FF or Chrome or whatever browser you are using and check that text that should have Cuprum font if it is not overriden by some other CSS property.
User avatar
DADOCTOR
Forum Members
Forum Members
Posts: 51
Joined: Sat Apr 02, 2011 5:39 am
Location: Australia

Re: QuattroSimple - New custom CMSMS Theme

Post by DADOCTOR »

It is ok on chrome but not firefox but it was ok with both

I will firebug it, and see if I can see a problem

Thanks Goran :)
uniqu3

Re: QuattroSimple - New custom CMSMS Theme

Post by uniqu3 »

It could also be some FF bug, checked my demo site with FF7, looks good there.
User avatar
DADOCTOR
Forum Members
Forum Members
Posts: 51
Joined: Sat Apr 02, 2011 5:39 am
Location: Australia

Re: QuattroSimple - New custom CMSMS Theme

Post by DADOCTOR »

uniqu3 wrote:It could also be some FF bug, checked my demo site with FF7, looks good there.
Is this correct css

Code: Select all

body {
	background: #ebeaea;
	color: #777777;
	font-family:"Cuprum", Geneva, "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
	line-height: 1.3em;
	margin: 0;
	padding: 0;
	font-size: .87em;
}
/* TYPOGRAPHY & DEFAULTS */
h1, h2, h3, h4 {
	font-family: "Cuprum", Geneva, "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
}
eamonnc
New Member
New Member
Posts: 4
Joined: Wed Oct 26, 2011 4:16 pm

Re: QuattroSimple - New custom CMSMS Theme

Post by eamonnc »

Hi
Great theme, thank you.

I know you've explained this in great detail but i've followed all the instructions but still cannot get the slider images to display.
See http://www.telemark.ie/CMSms/

Images are in the folder CMSms/modules/Gallery/slideshow.
I entered 'slideshow' in the box Enter Gallery Module foldername for Header Slideshow:.

Headerteaser set to +.
I'd appreciate your help. Driving me mad
uniqu3

Re: QuattroSimple - New custom CMSMS Theme

Post by uniqu3 »

And you did create a Gallery with Gallery module named "slideshow" and uploaded images using Gallery module?

You say your path is: CMSms/modules/Gallery/slideshow
If created with Gallery module it would be: CMSms/uploads/images/Gallery/slideshow
eamonnc
New Member
New Member
Posts: 4
Joined: Wed Oct 26, 2011 4:16 pm

Re: QuattroSimple - New custom CMSMS Theme

Post by eamonnc »

Hi

I add the images to the folder you suggested CMSms/uploads/images/Gallery/header and now the Gallery itself is showing on the page ie no sliding images
http://www.telemark.ie/CMSms/

Thanks
Eamonnc
eamonnc
New Member
New Member
Posts: 4
Joined: Wed Oct 26, 2011 4:16 pm

Re: QuattroSimple - New custom CMSMS Theme

Post by eamonnc »

Hi
I think it's to do with Cycelteaser. I can't see this anywhere now. It's not an option in Templates.
Post Reply

Return to “CMS Show Off”