- Responsive Multi-Purpose Theme Framework! ›
- Forums ›
- Theme Support ›
- Xhtml 730px container and 680px wrap
Hi
I am trying to upgrade a xhtml website to firmasite theme. I would like to hold a container with 730px and a wrap included embed content with 680px width.
Please, would you please tell me how maintain these widths? Thank you.
Trial url: http://www.vikingplus.net
First of all: our responsive usage. I see you are using site-only-content layout. These are our codes making that layout:
.site-only-content .container { max-width: 620px; } @media (min-width: 1200px) { .site-only-content .container { max-width: 770px; } } @media (min-width: 768px) and (max-width: 979px) { .site-only-content .container { max-width: 476px; } }
First `.site-only-content .container { max-width: 620px; }` section is for Default displays(980px and up),
Second `@media (min-width: 1200px) { .site-only-content .container { max-width: 770px; } }` section is for Large displays(1200px and up).
If i understand you correct, you want fixed 730px width site for Default and Large displays. This code should make it:
.site-only-content .container { max-width: 730px; } @media (min-width: 1200px) { .site-only-content .container { max-width: 730px; } }
I dont understand what you mean by a wrap included embed content with 680px width.. What is that wrap’s ID? is it special ID or you mean one of FirmaSite wraps? You need to define this
I’m sorry, I used bad the term ‘wrap’; inside the container I would like a one-column centered with 680px width, that’s all for now. Many years anchored on ancient html (xhtml) and … so many new concepts to understand.
Thanks a lot!
For centering: you can just click text center button on your editor.
For videos, i suggest you to use `flex-video` class. Like this:
<div class="flex-video"> VIDEO CODE HERE </div>
For videos, ok, but when you say ‘click text center button on your editor’, do you refer to this available plugin ‘Firmasite theme enhacer’?
If so, I have tried to activate this plugin but it shows this error:
Plugin could not be activated because it triggered a fatal error.
Parse error: syntax error, unexpected T_FUNCTION in /home/content/14/9037314/html/wp/wp-content/plugins/firmasite-theme-enhancer/firmasite-plugin.php on line 36
Thank you for reporting plugin error. It was a minor bug that prevent plugin working in old php versions (older then php5.3). I updated plugin, please uninstall and install it again.
Btw this is center button:
Hi Ünsal,
I have a lot of questions, please, could you help me?
1. How to center menu header buttons and put <code>border-radius: 0px;</code>
2. How to center posts bar and put <code>background: #fff</code> and <code>border-radius: 0px;</code>
3. And finally, how to edit all posts with <code>align full</code>
Thank you.
Trial url: http://www.vikingplus.net
I dont understand most of your questions but those seems css customizations.
If you dont know how to implement css, you should start to learn how to use css first. Those can be guide for you:
http://www.htmldog.com/guides/css/beginner/
http://www.htmldog.com/guides/css/intermediate/
http://www.htmldog.com/guides/css/advanced/
You should start from learning basic things before going to customize an advanced theme
You must be logged in to reply to this topic.