GetSimple Support Forum

Full Version: http://anythymecateringlv.com/
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
nice design Smile very nice logo.
css and UI is crappy.
giggty Wrote:nice design Smile very nice logo.
css and UI is crappy.
Harsh comment, but an honest one. Nice design. Tech folks look at UI and CSS. These could be improved. But good work with the CMS. Could you identify plugins you use?
A bit unrelated but I saw this block of CSS code in Any Thyme's source:

+.col-split{
float: right;
}

What does that plus symbol do? Is it some new CSS3 feature? I've never seen one used despite having years of experience with CSS and such things.
kuopassa Wrote:A bit unrelated but I saw this block of CSS code in Any Thyme's source:

+.col-split{
float: right;
}

What does that plus symbol do? Is it some new CSS3 feature? I've never seen one used despite having years of experience with CSS and such things.
It means that +.col-split styles should be assigned for next item, after the one with class="col-split", that contains same class. But such styles should be assigned for a child of fixed element, for example div + div.col-split, as it will be assigned for first <div class="col-split"> inside <div>. But then we have a first-child pseudo class which is much better solution...
Ehh, playing with css ...
Thanks for clarifying that, yojoe. :-) It's nice to learn new things like that.