• Как лучше реализовать мобильную верстку?

    @OxygenMan Автор вопроса
    Александр Бурыхин, Хм... можно попробовать. А в мобильном варианте, когда ряд выстраивается в столбец, то отступы не появляются сверху и снизу (вот эти самые col-2)?
  • Как лучше реализовать мобильную верстку?

    @OxygenMan Автор вопроса
    Здравствуйте! Спасибо большое за ответ! А ширину в этом случае я могу настраивать как угодно и это не будет влиять ни на что?
  • Как лучше реализовать мобильную верстку?

    @OxygenMan Автор вопроса
    Александр Бурыхин, Здравствуйте, у меня тут возник еще один вопрос. Если я поставлю col-12, то не нужно ли будет во всю ширину сетки бутстрапа увеличивать блок? Просто блок сам по себе действительно максимум на col-8 тянет и мне бы не хотелось увеличивать размеры.
  • Как лучше реализовать мобильную верстку?

    @OxygenMan Автор вопроса
    Александр Бурыхин, Спасибо, ознакомлюсь подробнее!
  • Как лучше реализовать мобильную верстку?

    @OxygenMan Автор вопроса
    Александр Бурыхин, Спасибо за ваш ответ! Я только что попробовал сделать это на bootstrap. Мой блок занимает 8 ячеек в сетке. col-lg-8. Но в хроме (в этом режиме, где можно менять размер окна под определенные размеры экранов) адаптивность не работает. Может, проблема в браузере, потому что он часто неправильно отображает все это.
  • Как лучше реализовать мобильную верстку?

    @OxygenMan Автор вопроса
    Благодарю за ответ! Я так понимаю, что на определенном минимальном разрешении мобильных экранов мне нужно будет увеличить блок во весь экран и все элементы внутри него?
  • Какой процессор лучше выбрать?

    @OxygenMan Автор вопроса
    fdroid, спасибо вам. Буду брать 2600X. Видеоядро не нужно
  • Как решить проблему с vbulletin?

    @OxygenMan Автор вопроса
    в htaccess всё стандартное
    Код
    <IfModule mod_rewrite.c>
    	RewriteEngine On
    
    	# In some cases where you have other mod_rewrite rules, you may need to remove the 
    	# comment on the following RewriteBase line and change it to match your folder name. 
    	# This resets the other mod_rewrite rules for just this directory
    	# If your site was www.example.com/forum, the setting would be /forum/
    	#RewriteBase /
    
    	#To redirect users to the secure version of your site, uncomment the lines below 
    	#RewriteCond %{HTTPS} !=on
    	#RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
    
    	# Send css calls directly to the correct file VBV-7807
    	RewriteRule ^css.php$ core/css.php [NC,L]
    
    	# Redirect old install path to core.
    	RewriteRule ^install/ core/install/ [NC,L]
    
    	# Main Redirect
    	RewriteCond %{REQUEST_URI} !\.(gif|jpg|jpeg|png|css)$
    	RewriteCond %{REQUEST_FILENAME} !-f
    	RewriteCond %{REQUEST_FILENAME} !-d
    	RewriteRule ^(.*)$ index.php?routestring=$1 [L,QSA]
    
    	# Because admincp is an actual directory.
    	RewriteRule ^(admincp/)$ index.php?routestring=$1 [L,QSA]
    
    </IfModule>
    
    <IfModule mod_deflate.c>
        AddOutputFilterByType DEFLATE application/atom+xml \
                              text/javascript \
                              application/x-javascript \
                              application/javascript \
                              application/json \
                              application/rss+xml \
                              application/vnd.ms-fontobject \
                              application/x-font-ttf \
                              application/xhtml+xml \
                              application/xml \
                              font/opentype \
                              image/svg+xml \
                              image/x-icon \
                              text/css \
                              text/html \
                              text/plain \
                              text/x-component \
                              text/xml
    </IfModule>
    
    <IfModule mod_expires.c>
    	ExpiresActive On
    	ExpiresByType application/x-javascript A1209600
    	ExpiresByType text/javascript A1209600
    	ExpiresByType application/javascript A1209600
    	ExpiresByType text/css A31536000
    	ExpiresByType image/x-icon A2592000
    	ExpiresByType image/icon A2592000
    	ExpiresByType application/x-ico A2592000
    	ExpiresByType application/ico A2592000
    	ExpiresByType image/gif A2592000
    	ExpiresByType image/jpeg A1209600
    	ExpiresByType image/jpg A1209600
    	ExpiresByType image/png A1209600
    	ExpiresByType application/x-shockwave-flash A1209600
    	ExpiresByType font/ttf A2592000
    	ExpiresByType font/otf A2592000
    	ExpiresByType font/x-woff A2592000
    	ExpiresByType image/svg+xml A2592000
    	ExpiresByType font/truetype A2592000
    	ExpiresByType font/opentype A2592000
    	ExpiresByType application/x-font-woff A2592000
    	ExpiresByType application/vnd.ms-fontobject A2592000
    </IfModule>
    
    <IfModule mod_headers.c>
    
    	Header set Connection keep-alive
    
    	<filesmatch "\.(ico|flv|gif|swf|eot|woff|otf|ttf|svg)$">
    		Header set Cache-Control "max-age=2592000, public"
    	</filesmatch>
    	<filesmatch "\.(jpg|jpeg|png)$">
    		Header set Cache-Control "max-age=1209600, public"
    	</filesmatch>
    	<filesmatch "\.(eot|woff|otf|ttf|svg)$">
    		Header set Cache-Control "max-age=2592000, public"
    	</filesmatch>
    	<filesmatch "\.(css)$">
    		Header set Cache-Control "max-age=31536000, public"
    	</filesmatch>
    	<filesmatch "\.(js)$">
    		Header set Cache-Control "max-age=1209600, public"
    	</filesmatch>
    
    	# Don't allow other sites to frame in your content.  If you do need to frame the
    	# forums in on another host you will need to remove or change this line.
    	Header always append X-Frame-Options sameorigin
    </IfModule>
    
    #don't allow some files that shouldn't really be present to be directly accessed.
    #note that attachements should never be directly accessed by the webserver because
    #we have permissions on the that are checked in the PHP code.
    <FilesMatch "(^#.*#|error_log|\.(old|bak|config|dist|inc|ini|log|gz|tar|zip|sh|sql|sw[op])|~)$">
        Order allow,deny
        Deny from all
        Satisfy All
    </FilesMatch>