Forum Replies Created
-
Mod
I don’t see that anywhere on your site.
Mod
Quote:some say it isn’t Mobile friendly, just a shrunken version of the site.They are probably pulling an old version of the site out of their browser’s cache. If they clear their browser cache (or view your site in a private browser window) they should see the mobile version.
Mod
You can just use either one out of the box. Graphene Mobile Neo has more options than Graphene Mobile, however.
Mod
It’s a separate file included with the theme. There aren’t any print.css options bundled with the theme, so if you want to make changes, you’ll need to use one of the methods I’ve outlined above.
FYI, it helps to take a look at the theme’s print.css file first.
Mod
In Custom CSS feature of Graphene (or in a child theme stylesheet), create this CSS class:
.js-left {float: left;}
.js-clear {clear: both;}Then, in the HTML for your page, you’ll apply that class to two
<div>s:<div class="js-left">
<p>Put your description here.</p>
</div>
</div class="js-left">
<img src="path-to-image-file" alt="this is the picture" />
</div>
<div class="js-clear"></div>Adjust the HTML to suit your needs.
Basically, the
float:leftCSS rule tells the browser to float things to the left. We applied it to both<div>s here, so they float to the left.The last line of the HTML is necessary because it clears the floats and makes the next two items appear properly.
w3schools is a good place to learn about CSS. Here’s their page on floats:
Mod
When you install the theme, which .zip file are you uploading?
Mod
Akismet is good.
Mod
For the record, what was the issue, and what was the solution?
Mod
You can override the theme’s print.css file in a child theme, either by including some specific print information in the style sheet:
@media print{
#header {display: none;}
}or by enqueuing your own print stylesheet in your child theme’s functions.php file.
Mod
Quote:Is there a better way to display the graphics and text than using tables?Yes. Use floats instead. Tables are for tabular data only. Using tables for page layouts leads to the kinds of problems you are having.
