PDA

View Full Version : border around image



Dnic
09-19-2010, 11:10 AM
How so I get a border (space) around my images with
a text wrap.

Are there some videos that can walk me through this stuff?

Dan Nickerson
09-20-2010, 09:16 AM
We already have this in place, and Wordpress has their own image wrapping.

Can you give an example where this is not working for you?

Dnic
09-20-2010, 10:01 AM
Thanks Dan

http://www.coloradowindshield.com/

Just the home page. i didn't add any to the other pages because of this issue.

Dave

BTW any idea how to get cformsII into a sidebar widget?

Dan Nickerson
09-20-2010, 10:23 AM
Upgrade to Version 2.03 it should fix problem. If not, at least download 2.03 zip and replace stylesheet. style.css

Sidebar widgets are controlled in

Appearance > Widgets

You drag the widgets you want and if you have html or widget code for the cformsII you can add it in a text widget.

Dnic
09-20-2010, 10:25 AM
Thanks for your help Dan.

Dnic
09-20-2010, 10:38 AM
error on uploading up grade

I got an error message saying the destination folder already exists and the upload failed.

Then I deactived Socrates and still the same.

Dnic
09-20-2010, 10:42 AM
never mind. Got it.

I deleted the previous version and upload went through.

Dave

Dnic
09-20-2010, 11:16 AM
Geez louise this is driving me batty.

I added a cforms widget to the sidebar and the text is all crunched up like a five year wrote this.

How do I fix it?

Dan Nickerson
09-20-2010, 11:26 AM
looks like you just changed theme.

Dnic
09-20-2010, 11:30 AM
actually you can look now.

I tried to delete the search bar and took out more code than I should have. i had to reinstall Socrates.

http://www.coloradowindshield.com

Thanks for your patience

Dan Nickerson
09-20-2010, 12:10 PM
Okay, so the issue now is the h2 line height?

Check out this post...

http://www.socratestheme.com/forum/showthread.php?t=29

Dnic
09-20-2010, 07:24 PM
yep that did it.

Thanks

ramirezchad
10-04-2011, 04:20 PM
Hello I hosted my video on with webs.com
but it looks odd because there is no border.
around it.

I was wondering if there's any simple coding
to put a border around my video?

Thanks ;)
Chad

Dan Nickerson
10-04-2011, 05:53 PM
Google:

border css div code

You can learn about how to enclose elements in divs.

For example:

<div id="videoborder"> video code </div>

Then in Soc custom styling box you put.

#videoborder {
border: 2px solid #00000;
}

ramirezchad
10-05-2011, 12:24 PM
Thanks Dan.

I just spent an hour on Google and I still
can't figure it out.

The thing is that I have already <div>
around my video to center it how would
the code be now Dan?

<div align="center">[video mp4="http://www.restaurantrecipes.webs.com/Untitled.mp4" poster="http://www.restaurantrecipes.webs.com/FirstFrame.png" preload="yes" autoplay="yes" width="620" height="434"]</div>

Thanks again Dan :D

lynnth
10-05-2011, 12:47 PM
If you add an ID to the div you can specify styling for that ID.

Dan Nickerson
10-05-2011, 03:48 PM
So in my example remove the current div center and add this to css

#videoborder {
border: 2px solid #00000;
text-align:center;
}